diff --git a/Gruntfile.coffee b/Gruntfile.coffee index 61b74a2bb..6fb3417ec 100644 --- a/Gruntfile.coffee +++ b/Gruntfile.coffee @@ -21,7 +21,7 @@ module.exports = (grunt)-> debug: true extensions: ['.coffee'] files: - './dist/js/main.js': ['./src/scripts/main.coffee'] + './dist/js/main.js': ['./src/coffee/main.coffee'] test: options: transform: ['coffeeify'] @@ -29,7 +29,7 @@ module.exports = (grunt)-> debug: true extensions: ['.coffee'] files: - './dist/js/test.js': ['./test/test.coffee'] + './dist/js/test.js': ['./src/coffee/test/test.coffee'] when: options: browserifyOptions: @@ -40,31 +40,21 @@ module.exports = (grunt)-> clean: dist: ['./dist'] - build: ['./build'] copy: - data_cg: - files: [expand:true, cwd:'./src/data', src:'**/*.cg', dest:'./dist/data'] - data_images: - files: [expand:true, cwd:'./src/data', src:'**/*.png', dest:'./dist/data'] - fonts: - files: [expand:true, cwd:'./src/fonts', src:['**/*.ttf', '**/*.woff'], dest:'./dist/fonts'] - images: - files: [expand:true, cwd:'./src/images/', src:['**/*.png', '**/*.jpg'], dest:'./dist/images'] + index_prerender: + files: + './dist/index.html': ['./static/index.html'] jquery_ui_images: files: [expand:true, cwd:'./lib/jquery-ui/images', src:['*.png'], dest:'./dist/css/images'] - raw_pages: - files: [expand:true, cwd:'./src/pages', src:['**/*.html', '**/*.txt'], dest:'./dist'] - rendered_pages: - files: [expand: true, cwd:'./prerender', src:['**/*.html'], dest:'./dist'] scripts: files: - './dist/js/backbone.js': ['./node_modules/backbone/backbone.js'] - './dist/js/chai.js': ['./node_modules/chai/chai.js'] - './dist/js/jade.js': ['./node_modules/jade/runtime.js'] - './dist/js/jquery.js': ['./node_modules/jquery/dist/jquery.js'] - './dist/js/jquery-ui.js': ['./lib/jquery-ui/jquery-ui.js'] - './dist/js/mocha.js': ['./node_modules/mocha/mocha.js'] + './dist/js/backbone.js': ['./node_modules/backbone/backbone.js'] + './dist/js/chai.js': ['./node_modules/chai/chai.js'] + './dist/js/jade.js': ['./node_modules/jade/runtime.js'] + './dist/js/jquery.js': ['./node_modules/jquery/dist/jquery.js'] + './dist/js/jquery-ui.js': ['./lib/jquery-ui/jquery-ui.js'] + './dist/js/mocha.js': ['./node_modules/mocha/mocha.js'] './dist/js/underscore.js': ['./node_modules/underscore/underscore.js'] styles: files: [expand:true, cwd:'./src/css', src:'**/*.scss', dest:'./dist/src/css'] @@ -87,7 +77,7 @@ module.exports = (grunt)-> pretty: true files: [ expand: true - cwd: './src/pages' + cwd: './src/jade' src: '*.jade' dest: './dist' ext: '.html' @@ -98,29 +88,31 @@ module.exports = (grunt)-> client: true node: true processName: (f)-> - f = f.replace './src/templates/', '' + f = f.replace './src/jade/templates/', '' f = f.replace '_view', '' f = f.replace '.jade', '' f = f.replace /\//g, '_' return f files: - './src/scripts/views.js': ['./src/templates/**/*.jade'] + './src/coffee/views.js': ['./src/jade/templates/**/*.jade'] - rename: - scripts: - src: './dist/js' - dest: './build/js' + rsync: + static: + options: + src: './static/' + dest: './dist/' + recursive: true sass: - main: + build: files: - './dist/css/main.css': ['./src/css/main.scss'] + './dist/css/main.css': ['./src/scss/main.scss'] dist: options: sourcemap: 'none' style: 'compressed' files: - './dist/css/main.css': ['./src/css/main.scss'] + './dist/css/main.css': ['./src/scss/main.scss'] uglify: scripts: @@ -128,52 +120,32 @@ module.exports = (grunt)-> maxLineLen: 20 files: [ expand: true - cwd: './build/js' + cwd: './dist/js' src: '**/*.js' dest: './dist/js' ] watch: - data_json: - files: ['./src/data/**/*.json'] - tasks: ['copy:data_json'] - data_cg: - files: ['./src/data/**/*.cg'] - tasks: ['copy:data_cg'] - data_images: - files: ['./src/data/**/*.png'] - tasks: ['copy:data_images'] - fonts: - files: ['./src/fonts/**/*'] - tasks: ['copy:fonts'] - images: - files: ['./src/images/**/*'] - tasks: ['copy:images'] - source: - files: ['./src/scripts/**/*.coffee'] + static: + files: ['./static/**/*'] + tasks: ['rsync:static'] + coffee: + files: ['./src/**/*.coffee'] tasks: ['browserify:main'] - pages: - files: ['./src/pages/**/*.jade'] - tasks: ['jade:pages'] - templates: - files: ['./src/templates/**/*.jade'] - tasks: ['jade:templates', 'browserify:main'] + jade: + files: ['./src/**/*.jade'] + tasks: ['jade:pages', 'jade:templates'] sass: - files: ['./src/css/**/*.scss'] + files: ['./src/**/*.scss'] tasks: ['sass', 'copy:styles'] tests: - files: ['./src/scripts/**/*.coffee', './test/**/*.coffee'] + files: ['./src/**/*.coffee', './test/**/*.coffee'] tasks: ['browserify:test'] grunt.registerTask 'default', 'build' - grunt.registerTask 'build', [ 'copy_for_build', 'sass:main', 'jade', 'browserify', 'exorcise' ] + grunt.registerTask 'build', [ 'rsync', 'copy', 'sass:build', 'jade', 'browserify', 'exorcise' ] - grunt.registerTask 'copy_for_build', [ - 'copy:data_cg', 'copy:data_images', 'copy:fonts', 'copy:images', 'copy:jquery_ui_images', - 'copy:raw_pages', 'copy:scripts', 'copy:styles', 'copy:style_extras' - ] + grunt.registerTask 'dist', ['clean', 'build', 'copy:index_prerender', 'sass:dist', 'uglify'] - grunt.registerTask 'dist', ['clean', 'build', 'copy:rendered_pages', 'sass:dist', 'rename:scripts', 'uglify'] - - grunt.registerTask 'full-watch', ['clean', 'build', 'watch'] + grunt.registerTask 'clean-watch', ['clean', 'build', 'watch'] diff --git a/src/design/arrow.graffle b/design/arrow.graffle similarity index 100% rename from src/design/arrow.graffle rename to design/arrow.graffle diff --git a/src/design/pages.graffle b/design/pages.graffle similarity index 100% rename from src/design/pages.graffle rename to design/pages.graffle diff --git a/src/design/remove.graffle b/design/remove.graffle similarity index 100% rename from src/design/remove.graffle rename to design/remove.graffle diff --git a/src/marketing/forum-posts.txt b/marketing/forum-posts.txt similarity index 100% rename from src/marketing/forum-posts.txt rename to marketing/forum-posts.txt diff --git a/scripts/prerender b/scripts/prerender index bd2a56977..e204bcf84 100755 --- a/scripts/prerender +++ b/scripts/prerender @@ -1,6 +1,6 @@ #!/bin/bash -OUTPUT_DIR='./prerender' +OUTPUT_DIR='./static' SCRIPT='/tmp/phantomjs_render.coffee' if [[ "$1" != "" ]]; then diff --git a/scripts/serve-prerendered b/scripts/serve-prerendered deleted file mode 100755 index 38e0a7256..000000000 --- a/scripts/serve-prerendered +++ /dev/null @@ -1,41 +0,0 @@ -#!/usr/bin/env coffee -# -# Crafting Guide - serve-prerendered -# -# Copyright (c) 2014-2015 by Redwood Labs -# All rights reserved. -# - -express = require 'express' -path = require 'path' - -######################################################################################################################## - -ROOT = './dist' - -######################################################################################################################## - -app = express() - -app.get '*', (request, response)-> - effectivePath = request.path.replace /\/$/, '/index.html' - - extension = path.extname(effectivePath) - contentType = { - '.css': 'text/css' - '.html': 'text/html' - '.js': 'text/javascript' - '.json': 'application/json' - '.map': 'application/json' - '.png': 'image/png' - '.ttf': 'application/octet-stream' - '.scss': 'text/css' - }[extension] - - console.log ">>> #{effectivePath}" - - response.set 'Content-Type', contentType - setTimeout (-> response.sendFile effectivePath, root:ROOT), 100 # post files after a short delay - -server = app.listen 8001, -> - console.log "listening at: #{server.address().address}:#{server.address().port}" diff --git a/scripts/server b/scripts/server index 26fe6aab4..15fa947fa 100755 --- a/scripts/server +++ b/scripts/server @@ -7,6 +7,7 @@ # express = require 'express' +fs = require 'fs' path = require 'path' ######################################################################################################################## @@ -17,18 +18,16 @@ ROOT = './dist/' app = express() -serveIndex = (request, response)-> - console.log ">>> index.html (for #{request.path})" +app.get '*/$', (request, response)-> response.set 'Content-Type', 'text/html' - response.sendFile 'index.html', root:ROOT - -app.get '/', serveIndex -app.get '/browse(/*)?', serveIndex -app.get '/configure(/*)?', serveIndex -app.get '/craft(/*)?', serveIndex -app.get '/crafting(/*)?', serveIndex -app.get '/item(/*)?', serveIndex -app.get '/mod(/*)?', serveIndex + filePath = "#{request.path}index.html" + fs.stat "#{ROOT}#{filePath}", (err, stats)-> + if stats.isFile() + response.sendFile filePath, root:ROOT + console.log ">>> #{filePath} (for #{request.path})" + else + response.sendFile '/index.html', root:ROOT + console.log ">>> index.html (for #{request.path})" app.get '*', (request, response)-> extension = path.extname(request.path) diff --git a/src/scripts/constants.coffee b/src/coffee/constants.coffee similarity index 90% rename from src/scripts/constants.coffee rename to src/coffee/constants.coffee index 2ce1fe7f4..3458edf16 100644 --- a/src/scripts/constants.coffee +++ b/src/coffee/constants.coffee @@ -57,13 +57,12 @@ Text.title = 'Crafting Guide for Minecraft | The Ultimate Step-by-Step Tutorial exports.Url = Url = {} Url.crafting = _.template "/craft/<%= inventoryText %>" -Url.itemIcon = _.template "/data/<%= modSlug %>/<%= modVersion %>/images/<%= itemSlug %>.png" +Url.itemIcon = _.template "/browse/<%= modSlug %>/<%= itemSlug %>/icon.png" Url.item = _.template "/browse/<%= modSlug %>/<%= itemSlug %>/" Url.mod = _.template "/browse/<%= modSlug %>/" Url.modData = _.template "/data/<%= modSlug %>/mod.cg" -Url.modLogo = _.template "/data/<%= modSlug %>/logo.png" +Url.modIcon = _.template "/browse/<%= modSlug %>/icon.png" Url.modVersion = _.template "/data/<%= modSlug %>/<%= modVersion %>/mod-version.cg" -Url.modLogoImage = _.template "/data/<%= modSlug %>/logo.png" exports.UrlParam = UrlParam = {} UrlParam.quantity = 'count' diff --git a/src/scripts/controllers/base_controller.coffee b/src/coffee/controllers/base_controller.coffee similarity index 100% rename from src/scripts/controllers/base_controller.coffee rename to src/coffee/controllers/base_controller.coffee diff --git a/src/scripts/controllers/browse_page_controller.coffee b/src/coffee/controllers/browse_page_controller.coffee similarity index 100% rename from src/scripts/controllers/browse_page_controller.coffee rename to src/coffee/controllers/browse_page_controller.coffee diff --git a/src/scripts/controllers/configure_page_controller.coffee b/src/coffee/controllers/configure_page_controller.coffee similarity index 100% rename from src/scripts/controllers/configure_page_controller.coffee rename to src/coffee/controllers/configure_page_controller.coffee diff --git a/src/scripts/controllers/craft_page_controller.coffee b/src/coffee/controllers/craft_page_controller.coffee similarity index 100% rename from src/scripts/controllers/craft_page_controller.coffee rename to src/coffee/controllers/craft_page_controller.coffee diff --git a/src/scripts/controllers/crafting_grid_controller.coffee b/src/coffee/controllers/crafting_grid_controller.coffee similarity index 100% rename from src/scripts/controllers/crafting_grid_controller.coffee rename to src/coffee/controllers/crafting_grid_controller.coffee diff --git a/src/scripts/controllers/crafting_table_controller.coffee b/src/coffee/controllers/crafting_table_controller.coffee similarity index 100% rename from src/scripts/controllers/crafting_table_controller.coffee rename to src/coffee/controllers/crafting_table_controller.coffee diff --git a/src/scripts/controllers/feedback_controller.coffee b/src/coffee/controllers/feedback_controller.coffee similarity index 100% rename from src/scripts/controllers/feedback_controller.coffee rename to src/coffee/controllers/feedback_controller.coffee diff --git a/src/scripts/controllers/full_recipe_controller.coffee b/src/coffee/controllers/full_recipe_controller.coffee similarity index 100% rename from src/scripts/controllers/full_recipe_controller.coffee rename to src/coffee/controllers/full_recipe_controller.coffee diff --git a/src/scripts/controllers/header_controller.coffee b/src/coffee/controllers/header_controller.coffee similarity index 100% rename from src/scripts/controllers/header_controller.coffee rename to src/coffee/controllers/header_controller.coffee diff --git a/src/scripts/controllers/home_page_controller.coffee b/src/coffee/controllers/home_page_controller.coffee similarity index 100% rename from src/scripts/controllers/home_page_controller.coffee rename to src/coffee/controllers/home_page_controller.coffee diff --git a/src/scripts/controllers/image_loader.coffee b/src/coffee/controllers/image_loader.coffee similarity index 100% rename from src/scripts/controllers/image_loader.coffee rename to src/coffee/controllers/image_loader.coffee diff --git a/src/scripts/controllers/inventory_controller.coffee b/src/coffee/controllers/inventory_controller.coffee similarity index 100% rename from src/scripts/controllers/inventory_controller.coffee rename to src/coffee/controllers/inventory_controller.coffee diff --git a/src/scripts/controllers/inventory_table_controller.coffee b/src/coffee/controllers/inventory_table_controller.coffee similarity index 100% rename from src/scripts/controllers/inventory_table_controller.coffee rename to src/coffee/controllers/inventory_table_controller.coffee diff --git a/src/scripts/controllers/item_controller.coffee b/src/coffee/controllers/item_controller.coffee similarity index 100% rename from src/scripts/controllers/item_controller.coffee rename to src/coffee/controllers/item_controller.coffee diff --git a/src/scripts/controllers/item_group_controller.coffee b/src/coffee/controllers/item_group_controller.coffee similarity index 100% rename from src/scripts/controllers/item_group_controller.coffee rename to src/coffee/controllers/item_group_controller.coffee diff --git a/src/scripts/controllers/item_page_controller.coffee b/src/coffee/controllers/item_page_controller.coffee similarity index 100% rename from src/scripts/controllers/item_page_controller.coffee rename to src/coffee/controllers/item_page_controller.coffee diff --git a/src/scripts/controllers/minimal_recipe_controller.coffee b/src/coffee/controllers/minimal_recipe_controller.coffee similarity index 100% rename from src/scripts/controllers/minimal_recipe_controller.coffee rename to src/coffee/controllers/minimal_recipe_controller.coffee diff --git a/src/scripts/controllers/mod_controller.coffee b/src/coffee/controllers/mod_controller.coffee similarity index 95% rename from src/scripts/controllers/mod_controller.coffee rename to src/coffee/controllers/mod_controller.coffee index 7027b33a1..1b7604ab7 100644 --- a/src/scripts/controllers/mod_controller.coffee +++ b/src/coffee/controllers/mod_controller.coffee @@ -30,7 +30,7 @@ module.exports = class ModController extends BaseController @$el.removeClass 'empty' @$link.attr 'href', Url.mod modSlug:@model.slug - @$logo.attr 'src', Url.modLogo modSlug:@model.slug + @$logo.attr 'src', Url.modIcon modSlug:@model.slug @$name.html @model.name @$description.html @model.description else diff --git a/src/scripts/controllers/mod_pack_controller.coffee b/src/coffee/controllers/mod_pack_controller.coffee similarity index 100% rename from src/scripts/controllers/mod_pack_controller.coffee rename to src/coffee/controllers/mod_pack_controller.coffee diff --git a/src/scripts/controllers/mod_page_controller.coffee b/src/coffee/controllers/mod_page_controller.coffee similarity index 98% rename from src/scripts/controllers/mod_page_controller.coffee rename to src/coffee/controllers/mod_page_controller.coffee index 27a40ed6d..3d6f312f2 100644 --- a/src/scripts/controllers/mod_page_controller.coffee +++ b/src/coffee/controllers/mod_page_controller.coffee @@ -68,7 +68,7 @@ module.exports = class ModPageController extends PageController if @model? @$name.html @model.name @$byline.html "by #{@model.author}" - @$titleImage.attr 'src', Url.modLogoImage modSlug:@model.slug + @$titleImage.attr 'src', Url.modIcon modSlug:@model.slug @$description.html @model.description @$el.slideDown duration:Duration.normal diff --git a/src/scripts/controllers/mod_selector_controller.coffee b/src/coffee/controllers/mod_selector_controller.coffee similarity index 100% rename from src/scripts/controllers/mod_selector_controller.coffee rename to src/coffee/controllers/mod_selector_controller.coffee diff --git a/src/scripts/controllers/page_controller.coffee b/src/coffee/controllers/page_controller.coffee similarity index 100% rename from src/scripts/controllers/page_controller.coffee rename to src/coffee/controllers/page_controller.coffee diff --git a/src/scripts/controllers/recipe_step_controller.coffee b/src/coffee/controllers/recipe_step_controller.coffee similarity index 100% rename from src/scripts/controllers/recipe_step_controller.coffee rename to src/coffee/controllers/recipe_step_controller.coffee diff --git a/src/scripts/controllers/stack_controller.coffee b/src/coffee/controllers/stack_controller.coffee similarity index 100% rename from src/scripts/controllers/stack_controller.coffee rename to src/coffee/controllers/stack_controller.coffee diff --git a/src/scripts/crafting_guide_router.coffee b/src/coffee/crafting_guide_router.coffee similarity index 100% rename from src/scripts/crafting_guide_router.coffee rename to src/coffee/crafting_guide_router.coffee diff --git a/src/scripts/logger.coffee b/src/coffee/logger.coffee similarity index 100% rename from src/scripts/logger.coffee rename to src/coffee/logger.coffee diff --git a/src/scripts/main.coffee b/src/coffee/main.coffee similarity index 100% rename from src/scripts/main.coffee rename to src/coffee/main.coffee diff --git a/src/scripts/models/base_model.coffee b/src/coffee/models/base_model.coffee similarity index 100% rename from src/scripts/models/base_model.coffee rename to src/coffee/models/base_model.coffee diff --git a/src/scripts/models/craft_page.coffee b/src/coffee/models/craft_page.coffee similarity index 100% rename from src/scripts/models/craft_page.coffee rename to src/coffee/models/craft_page.coffee diff --git a/src/scripts/models/crafting_plan.coffee b/src/coffee/models/crafting_plan.coffee similarity index 100% rename from src/scripts/models/crafting_plan.coffee rename to src/coffee/models/crafting_plan.coffee diff --git a/src/scripts/models/crafting_table.coffee b/src/coffee/models/crafting_table.coffee similarity index 100% rename from src/scripts/models/crafting_table.coffee rename to src/coffee/models/crafting_table.coffee diff --git a/src/scripts/models/email_client.coffee b/src/coffee/models/email_client.coffee similarity index 100% rename from src/scripts/models/email_client.coffee rename to src/coffee/models/email_client.coffee diff --git a/src/scripts/models/inventory.coffee b/src/coffee/models/inventory.coffee similarity index 99% rename from src/scripts/models/inventory.coffee rename to src/coffee/models/inventory.coffee index 40db95b05..720195b2d 100644 --- a/src/scripts/models/inventory.coffee +++ b/src/coffee/models/inventory.coffee @@ -185,7 +185,7 @@ module.exports = class Inventory extends BaseModel stack = @_stacks[itemSlug] if not stack? stack = new Stack itemSlug:itemSlug, quantity:quantity - @listenTo stack, Event.change, => @trigger Event.change + @listenTo stack, Event.change, => @trigger Event.change, stack @_stacks[itemSlug] = stack @_itemSlugs.push itemSlug @_sort() diff --git a/src/scripts/models/item.coffee b/src/coffee/models/item.coffee similarity index 95% rename from src/scripts/models/item.coffee rename to src/coffee/models/item.coffee index 2e1d600b0..ad77fe109 100644 --- a/src/scripts/models/item.coffee +++ b/src/coffee/models/item.coffee @@ -20,10 +20,13 @@ module.exports = class Item extends BaseModel constructor: (attributes={}, options={})-> if not attributes.name? then throw new Error 'attributes.name is required' + attributes.description ?= null attributes.group ?= Item.Group.Other attributes.isGatherable ?= false attributes.modVersion ?= null + attributes.officialUrl ?= null attributes.slug ?= ItemSlug.slugify attributes.name + attributes.videos ?= [] options.logEvents ?= false super attributes, options diff --git a/src/scripts/models/item_page.coffee b/src/coffee/models/item_page.coffee similarity index 100% rename from src/scripts/models/item_page.coffee rename to src/coffee/models/item_page.coffee diff --git a/src/scripts/models/item_slug.coffee b/src/coffee/models/item_slug.coffee similarity index 100% rename from src/scripts/models/item_slug.coffee rename to src/coffee/models/item_slug.coffee diff --git a/src/scripts/models/mod.coffee b/src/coffee/models/mod.coffee similarity index 100% rename from src/scripts/models/mod.coffee rename to src/coffee/models/mod.coffee diff --git a/src/scripts/models/mod_pack.coffee b/src/coffee/models/mod_pack.coffee similarity index 100% rename from src/scripts/models/mod_pack.coffee rename to src/coffee/models/mod_pack.coffee diff --git a/src/scripts/models/mod_parser.coffee b/src/coffee/models/mod_parser.coffee similarity index 100% rename from src/scripts/models/mod_parser.coffee rename to src/coffee/models/mod_parser.coffee diff --git a/src/scripts/models/mod_version.coffee b/src/coffee/models/mod_version.coffee similarity index 100% rename from src/scripts/models/mod_version.coffee rename to src/coffee/models/mod_version.coffee diff --git a/src/scripts/models/mod_version_parser.coffee b/src/coffee/models/mod_version_parser.coffee similarity index 100% rename from src/scripts/models/mod_version_parser.coffee rename to src/coffee/models/mod_version_parser.coffee diff --git a/src/scripts/models/name_finder.coffee b/src/coffee/models/name_finder.coffee similarity index 100% rename from src/scripts/models/name_finder.coffee rename to src/coffee/models/name_finder.coffee diff --git a/src/scripts/models/parser_versions/command_parser_version_base.coffee b/src/coffee/models/parser_versions/command_parser_version_base.coffee similarity index 74% rename from src/scripts/models/parser_versions/command_parser_version_base.coffee rename to src/coffee/models/parser_versions/command_parser_version_base.coffee index 0f229c049..c286b1fda 100644 --- a/src/scripts/models/parser_versions/command_parser_version_base.coffee +++ b/src/coffee/models/parser_versions/command_parser_version_base.coffee @@ -39,10 +39,11 @@ module.exports = class CommandParserVersionBase @_rawData = {} @_lineNumber = 1 - lines = text.split '\n' - for i in [0...lines.length] - @_lineNumber = i + 1 - commands = @_parseLine lines[i] + @_lines = text.split '\n' + @_lineNumber = 0 + while @_lineNumber < @_lines.length + @_lineNumber += 1 + commands = @_parseLine @_lines[@_lineNumber - 1] for command in commands @_handleErrors @_execute, command @@ -77,6 +78,8 @@ module.exports = class CommandParserVersionBase line = line.trim() return [] if line.length is 0 + hereDoc = @_parseHereDoc line + lineParts = (part.trim() for part in line.split(';')) commands = [] for linePart in lineParts @@ -87,6 +90,7 @@ module.exports = class CommandParserVersionBase args = [] args = (s.trim() for s in match[2].split(',')) if match[2]? + args.push hereDoc if hereDoc commands.push name:match[1], args:args return commands @@ -100,3 +104,27 @@ module.exports = class CommandParserVersionBase e.message = "line #{@_lineNumber}: #{e.message}" if not @_showAllErrors then throw e logger.error -> e.message + + _parseHereDoc: (line)-> + hereDocIndex = line.indexOf '<<-' + return null unless hereDocIndex isnt -1 + + hereDocStopText = line[hereDocIndex+3...line.length] + hereDocLines = [] + while true + @_lineNumber += 1 + break if @_lineNumber >= @_lines.length + + nextLine = @_lines[@_lineNumber-1] + break if nextLine.trim() is hereDocStopText + hereDocLines.push nextLine + + shortestIndent = Number.MAX_VALUE + for line in hereDocLines + shortestIndent = Math.min line.match(/( *).*/)[1].length, shortestIndent + + for i in [0...hereDocLines.length] + hereDocLines[i] = hereDocLines[i][shortestIndent..] + + return null unless hereDocLines.length > 0 + return hereDocLines.join '\n' diff --git a/src/coffee/models/parser_versions/item_parser_v1.coffee b/src/coffee/models/parser_versions/item_parser_v1.coffee new file mode 100644 index 000000000..b658df195 --- /dev/null +++ b/src/coffee/models/parser_versions/item_parser_v1.coffee @@ -0,0 +1,45 @@ +### +Crafting Guide - item_parser_v1.coffee + +Copyright (c) 2015 by Redwood Labs +All rights reserved. +### + +CommandParserVersionBase = require './command_parser_version_base' + +######################################################################################################################## + +module.exports = class ItemParserV1 extends CommandParserVersionBase + + # CommandParserVersionBase Overrides ########################################################### + + _buildModel: (rawData, model)-> + @_buildItem rawData, model + + _unparseModel: (builder, model)-> + @_unparseItem builder, model + + # Command Methods ############################################################################## + + _command_description: (textParts...)-> + @_rawData.text ?= '' + @_rawData.text += textParts.join ', ' + + _command_officialUrl: (officialUrl)-> + if @_rawData.officialUrl? then throw new Error 'duplicate declaration of "officialUrl"' + if officialUrl.length is 0 then throw new Error 'officialUrl cannot be empty' + @_rawData.officialUrl = officialUrl + + _command_video: (youTubeId, name)-> + if not youTubeId?.length then throw new Error 'video declaration requires a YouTubeID' + if not name?.length then throw new Error 'video declaration requires a name' + + @_rawData.videos ?= [] + @_rawData.videos.push youTubeId:youTubeId, name:name + + # Object Building Methods ###################################################################### + + _buildItem: (rawData, model)-> + item.description = rawData.description if rawData.description + item.officialUrl = rawData.officialUrl if rawData.officialUrl + item.videos = rawData.videos if rawData.videos diff --git a/src/scripts/models/parser_versions/mod_parser_v1.coffee b/src/coffee/models/parser_versions/mod_parser_v1.coffee similarity index 98% rename from src/scripts/models/parser_versions/mod_parser_v1.coffee rename to src/coffee/models/parser_versions/mod_parser_v1.coffee index d987e0a69..94b86a7fb 100644 --- a/src/scripts/models/parser_versions/mod_parser_v1.coffee +++ b/src/coffee/models/parser_versions/mod_parser_v1.coffee @@ -11,7 +11,7 @@ ModVersion = require '../mod_version' ######################################################################################################################## -module.exports = class ModParserV2 extends CommandParserVersionBase +module.exports = class ModParserV1 extends CommandParserVersionBase # CommandParserVersionBase Overrides ########################################################### diff --git a/src/scripts/models/parser_versions/mod_version_parser_v1.coffee b/src/coffee/models/parser_versions/mod_version_parser_v1.coffee similarity index 100% rename from src/scripts/models/parser_versions/mod_version_parser_v1.coffee rename to src/coffee/models/parser_versions/mod_version_parser_v1.coffee diff --git a/src/scripts/models/recipe.coffee b/src/coffee/models/recipe.coffee similarity index 100% rename from src/scripts/models/recipe.coffee rename to src/coffee/models/recipe.coffee diff --git a/src/scripts/models/recipe_step.coffee b/src/coffee/models/recipe_step.coffee similarity index 100% rename from src/scripts/models/recipe_step.coffee rename to src/coffee/models/recipe_step.coffee diff --git a/src/scripts/models/simple_stack.coffee b/src/coffee/models/simple_stack.coffee similarity index 100% rename from src/scripts/models/simple_stack.coffee rename to src/coffee/models/simple_stack.coffee diff --git a/src/scripts/models/stack.coffee b/src/coffee/models/stack.coffee similarity index 100% rename from src/scripts/models/stack.coffee rename to src/coffee/models/stack.coffee diff --git a/src/scripts/models/storage.coffee b/src/coffee/models/storage.coffee similarity index 100% rename from src/scripts/models/storage.coffee rename to src/coffee/models/storage.coffee diff --git a/src/scripts/models/string_builder.coffee b/src/coffee/models/string_builder.coffee similarity index 100% rename from src/scripts/models/string_builder.coffee rename to src/coffee/models/string_builder.coffee diff --git a/src/scripts/models/versioned_parser_base.coffee b/src/coffee/models/versioned_parser_base.coffee similarity index 100% rename from src/scripts/models/versioned_parser_base.coffee rename to src/coffee/models/versioned_parser_base.coffee diff --git a/src/scripts/polyfill.coffee b/src/coffee/polyfill.coffee similarity index 100% rename from src/scripts/polyfill.coffee rename to src/coffee/polyfill.coffee diff --git a/test/crafting_plan.test.coffee b/src/coffee/test/crafting_plan.test.coffee similarity index 92% rename from test/crafting_plan.test.coffee rename to src/coffee/test/crafting_plan.test.coffee index 64a737430..b06023870 100644 --- a/test/crafting_plan.test.coffee +++ b/src/coffee/test/crafting_plan.test.coffee @@ -5,11 +5,11 @@ Copyright (c) 2014-2015 by Redwood Labs All rights reserved. ### -CraftingPlan = require '../src/scripts/models/crafting_plan' -ItemSlug = require '../src/scripts/models/item_slug' -Mod = require '../src/scripts/models/mod' -ModPack = require '../src/scripts/models/mod_pack' -ModVersion = require '../src/scripts/models/mod_version' +CraftingPlan = require '../models/crafting_plan' +ItemSlug = require '../models/item_slug' +Mod = require '../models/mod' +ModPack = require '../models/mod_pack' +ModVersion = require '../models/mod_version' ######################################################################################################################## diff --git a/test/event_recorder.coffee b/src/coffee/test/event_recorder.coffee similarity index 100% rename from test/event_recorder.coffee rename to src/coffee/test/event_recorder.coffee diff --git a/test/inventory.test.coffee b/src/coffee/test/inventory.test.coffee similarity index 96% rename from test/inventory.test.coffee rename to src/coffee/test/inventory.test.coffee index f05196eac..aebe3980d 100644 --- a/test/inventory.test.coffee +++ b/src/coffee/test/inventory.test.coffee @@ -5,11 +5,11 @@ # All rights reserved. ### -{Event} = require '../src/scripts/constants' +{Event} = require '../constants' EventRecorder = require './event_recorder' -Inventory = require '../src/scripts/models/inventory' -Item = require '../src/scripts/models/item' -ItemSlug = require '../src/scripts/models/item_slug' +Inventory = require '../models/inventory' +Item = require '../models/item' +ItemSlug = require '../models/item_slug' ######################################################################################################################## @@ -208,4 +208,4 @@ describe 'inventory.coffee', -> it 'emits the proper events', -> events = new EventRecorder inventory inventory.remove 'wool' - events.names.should.eql [Event.remove, Event.change] + events.names.should.eql [Event.change, Event.remove, Event.change] diff --git a/test/item_slug.test.coffee b/src/coffee/test/item_slug.test.coffee similarity index 98% rename from test/item_slug.test.coffee rename to src/coffee/test/item_slug.test.coffee index 1fbc4fa68..28b9c1492 100644 --- a/test/item_slug.test.coffee +++ b/src/coffee/test/item_slug.test.coffee @@ -5,7 +5,7 @@ Copyright (c) 2015 by Redwood Labs All rights reserved. ### -ItemSlug = require '../src/scripts/models/item_slug' +ItemSlug = require '../models/item_slug' ######################################################################################################################## diff --git a/test/mod.test.coffee b/src/coffee/test/mod.test.coffee similarity index 95% rename from test/mod.test.coffee rename to src/coffee/test/mod.test.coffee index 024a13016..d223786a3 100644 --- a/test/mod.test.coffee +++ b/src/coffee/test/mod.test.coffee @@ -5,7 +5,7 @@ Copyright (c) 2015 by Redwood Labs All rights reserved. ### -Mod = require '../src/scripts/models/mod' +Mod = require '../models/mod' ######################################################################################################################## diff --git a/test/mod_pack.test.coffee b/src/coffee/test/mod_pack.test.coffee similarity index 84% rename from test/mod_pack.test.coffee rename to src/coffee/test/mod_pack.test.coffee index 3c580170a..0abf125b0 100644 --- a/test/mod_pack.test.coffee +++ b/src/coffee/test/mod_pack.test.coffee @@ -5,11 +5,11 @@ Copyright (c) 2014-2015 by Redwood Labs All rights reserved. ### -Item = require '../src/scripts/models/item' -ItemSlug = require '../src/scripts/models/item_slug' -Mod = require '../src/scripts/models/mod' -ModPack = require '../src/scripts/models/mod_pack' -ModVersion = require '../src/scripts/models/mod_version' +Item = require '../models/item' +ItemSlug = require '../models/item_slug' +Mod = require '../models/mod' +ModPack = require '../models/mod_pack' +ModVersion = require '../models/mod_version' ######################################################################################################################## @@ -82,22 +82,22 @@ describe 'mod_pack.coffee', -> it 'returns all data for a regular Minecraft item', -> display = modPack.findItemDisplay ItemSlug.slugify 'bed' - display.iconUrl.should.equal '/data/minecraft/1.7.10/images/bed.png' - display.itemUrl.should.equal '/mod/minecraft/bed' + display.iconUrl.should.equal '/browse/minecraft/bed/icon.png' + display.itemUrl.should.equal '/browse/minecraft/bed/' display.itemName.should.equal 'Bed' display.modSlug.should.equal 'minecraft' it 'returns all data for an item in an enabled mod', -> buildcraft.activeVersion = '6.2.6' display = modPack.findItemDisplay ItemSlug.slugify 'stone_gear' - display.iconUrl.should.equal '/data/buildcraft/6.2.6/images/stone_gear.png' - display.itemUrl.should.equal '/mod/buildcraft/stone_gear' + display.iconUrl.should.equal '/browse/buildcraft/stone_gear/icon.png' + display.itemUrl.should.equal '/browse/buildcraft/stone_gear/' display.itemName.should.equal 'Stone Gear' display.modSlug.should.equal 'buildcraft' it 'assumes an unfound item is from Minecraft', -> display = modPack.findItemDisplay ItemSlug.slugify 'iron_chestplate' - display.iconUrl.should.equal '/data/minecraft/1.7.10/images/iron_chestplate.png' - display.itemUrl.should.equal '/mod/minecraft/iron_chestplate' + display.iconUrl.should.equal '/browse/minecraft/iron_chestplate/icon.png' + display.itemUrl.should.equal '/browse/minecraft/iron_chestplate/' display.itemName.should.equal 'Iron Chestplate' display.modSlug.should.equal 'minecraft' diff --git a/test/mod_version.test.coffee b/src/coffee/test/mod_version.test.coffee similarity index 95% rename from test/mod_version.test.coffee rename to src/coffee/test/mod_version.test.coffee index 4720a1c02..92ecf244e 100644 --- a/test/mod_version.test.coffee +++ b/src/coffee/test/mod_version.test.coffee @@ -5,9 +5,9 @@ Copyright (c) 2014-2015 by Redwood Labs All rights reserved. ### -Item = require '../src/scripts/models/item' -ItemSlug = require '../src/scripts/models/item_slug' -ModVersion = require '../src/scripts/models/mod_version' +Item = require '../models/item' +ItemSlug = require '../models/item_slug' +ModVersion = require '../models/mod_version' ######################################################################################################################## diff --git a/src/coffee/test/parser_versions/command_parser_version_base.test.coffee b/src/coffee/test/parser_versions/command_parser_version_base.test.coffee new file mode 100644 index 000000000..48e09df7c --- /dev/null +++ b/src/coffee/test/parser_versions/command_parser_version_base.test.coffee @@ -0,0 +1,45 @@ +### +Crafting Guide - command_parser_version_base.test.coffee + +Copyright (c) 2015 by Redwood Labs +All rights reserved. +### + +CommandParserVersionBase = require '../../models/parser_versions/command_parser_version_base' + +######################################################################################################################## + +parser = null + +######################################################################################################################## + +describe 'command_parser_version_base.coffee', -> + + beforeEach -> parser = new CommandParserVersionBase model:{} + + describe '_parseHereDoc', -> + + it 'returns null for non-heredoc lines', -> + result = parser._parseHereDoc 'foobar: baz' + expect(result).to.be.null + + it 'identifies the right text for a real heredoc', -> + parser._lines = ['command: <<-END', 'alpha', 'bravo', 'charlie', 'END', 'command1: arg2'] + parser._lineNumber = 1 + + result = parser._parseHereDoc parser._lines[0] + result.should.equal 'alpha\nbravo\ncharlie' + + it 'identifies an empty heredoc', -> + parser._lines = ['command: <<-END', 'END'] + parser._lineNumber = 1 + + result = parser._parseHereDoc parser._lines[0] + expect(result).to.be.null + + it 'trims smallest leading whitespace', -> + parser._lines = ['command: <<-END', ' alpha', ' bravo', ' charlie', 'END', 'command1: arg2'] + parser._lineNumber = 1 + + result = parser._parseHereDoc parser._lines[0] + result.should.equal 'alpha\n bravo\ncharlie' diff --git a/test/parser_versions/mod_version_parser_v1.test.coffee b/src/coffee/test/parser_versions/mod_version_parser_v1.test.coffee similarity index 97% rename from test/parser_versions/mod_version_parser_v1.test.coffee rename to src/coffee/test/parser_versions/mod_version_parser_v1.test.coffee index e45575ad6..3404be037 100644 --- a/test/parser_versions/mod_version_parser_v1.test.coffee +++ b/src/coffee/test/parser_versions/mod_version_parser_v1.test.coffee @@ -5,10 +5,10 @@ Copyright (c) 2015 by Redwood Labs All rights reserved. ### -CommandParserVersionBase = require '../../src/scripts/models/parser_versions/command_parser_version_base' -ItemSlug = require '../../src/scripts/models/item_slug' -ModVersion = require '../../src/scripts/models/mod_version' -ModVersionParserV1 = require '../../src/scripts/models/parser_versions/mod_version_parser_v1' +CommandParserVersionBase = require '../../models/parser_versions/command_parser_version_base' +ItemSlug = require '../../models/item_slug' +ModVersion = require '../../models/mod_version' +ModVersionParserV1 = require '../../models/parser_versions/mod_version_parser_v1' ######################################################################################################################## diff --git a/test/recipe.test.coffee b/src/coffee/test/recipe.test.coffee similarity index 93% rename from test/recipe.test.coffee rename to src/coffee/test/recipe.test.coffee index 3426b43b4..c8ed27f1b 100644 --- a/test/recipe.test.coffee +++ b/src/coffee/test/recipe.test.coffee @@ -5,10 +5,10 @@ Copyright (c) 2015 by Redwood Labs All rights reserved. ### -Item = require '../src/scripts/models/item' -ItemSlug = require '../src/scripts/models/item_slug' -Recipe = require '../src/scripts/models/recipe' -Stack = require '../src/scripts/models/stack' +Item = require '../models/item' +ItemSlug = require '../models/item_slug' +Recipe = require '../models/recipe' +Stack = require '../models/stack' ######################################################################################################################## diff --git a/test/string_builder.test.coffee b/src/coffee/test/string_builder.test.coffee similarity index 97% rename from test/string_builder.test.coffee rename to src/coffee/test/string_builder.test.coffee index a90791c62..6163b6dea 100644 --- a/test/string_builder.test.coffee +++ b/src/coffee/test/string_builder.test.coffee @@ -5,7 +5,7 @@ Copyright (c) 2015 by Redwood Labs All rights reserved. ### -StringBuilder = require '../src/scripts/models/string_builder' +StringBuilder = require '../models/string_builder' ######################################################################################################################## diff --git a/test/test.coffee b/src/coffee/test/test.coffee similarity index 88% rename from test/test.coffee rename to src/coffee/test/test.coffee index c5f3e423e..c43662271 100644 --- a/test/test.coffee +++ b/src/coffee/test/test.coffee @@ -18,11 +18,11 @@ global.expect = chai.expect global.should = chai.should() global.util = require 'util' -Logger = require '../src/scripts/logger' +Logger = require '../logger' global.logger = new Logger level:Logger.DEBUG -require '../src/scripts/polyfill' -require '../src/scripts/underscore_mixins' +require '../polyfill' +require '../underscore_mixins' # Test Registry ######################################################################################################## @@ -36,6 +36,7 @@ require './recipe.test' require './mod_version.test' require './mod.test' require './mod_pack.test' +require './parser_versions/command_parser_version_base.test' require './parser_versions/mod_version_parser_v1.test' require './crafting_plan.test' diff --git a/src/scripts/underscore_mixins.coffee b/src/coffee/underscore_mixins.coffee similarity index 100% rename from src/scripts/underscore_mixins.coffee rename to src/coffee/underscore_mixins.coffee diff --git a/src/scripts/url_params.coffee b/src/coffee/url_params.coffee similarity index 100% rename from src/scripts/url_params.coffee rename to src/coffee/url_params.coffee diff --git a/src/coffee/views.js b/src/coffee/views.js new file mode 100644 index 000000000..976afc0aa --- /dev/null +++ b/src/coffee/views.js @@ -0,0 +1,157 @@ +var jade = jade || require('jade').runtime; + +this["JST"] = this["JST"] || {}; + +this["JST"]["browse_page"] = function template(locals) { +var buf = []; +var jade_mixins = {}; +var jade_interp; + +buf.push("
\n\n\n\n

Active Mods

");;return buf.join(""); +}; + +this["JST"]["configure_page"] = function template(locals) { +var buf = []; +var jade_mixins = {}; +var jade_interp; + +buf.push("
\n\n\n\n
");;return buf.join(""); +}; + +this["JST"]["craft_page"] = function template(locals) { +var buf = []; +var jade_mixins = {}; +var jade_interp; + +buf.push("
");;return buf.join(""); +}; + +this["JST"]["crafting_grid"] = function template(locals) { +var buf = []; +var jade_mixins = {}; +var jade_interp; + +buf.push("
");;return buf.join(""); +}; + +this["JST"]["crafting_table"] = function template(locals) { +var buf = []; +var jade_mixins = {}; +var jade_interp; + +buf.push("

Crafting Plan

");;return buf.join(""); +}; + +this["JST"]["feedback"] = function template(locals) { +var buf = []; +var jade_mixins = {}; +var jade_interp; + +buf.push("

Sending failed. Please try again later.

Feedback

");;return buf.join(""); +}; + +this["JST"]["full_recipe"] = function template(locals) { +var buf = []; +var jade_mixins = {}; +var jade_interp; + +buf.push("

Ingredients

Produces

");;return buf.join(""); +}; + +this["JST"]["home_page"] = function template(locals) { +var buf = []; +var jade_mixins = {}; +var jade_interp; + +buf.push("
\n\n\n\n

What's new?

2015-03-01

2015-02-26

This release adds a new section to the item pages called \"Used as Tool to Make\". The new section\nshows all the other items which can be made by that tool. For example, the IC2 Macerator shows\na bunch of things like Iron Dust, Gold Dust, etc.\n

2015-02-24

This release changes the crafting page to let you modify the quantity of items in the \"Items You\nWant\" and \"Items You Have\" section. Let's say you want to make 64 Potions of Healing. You add \"Potion of Healing\" just\nas as you always did, but now you can click on the quantity to change it to whatever you want.

At the same time, I've changed the quantity field to allow up to 9999 of any item. Have fun with\nthose huge builds!\n

2015-02-22

Woo hoo! Or, should I say: Choo choo! I just added support for RailCraft! I also pushed up lots\nof performance improvements (55% faster at computing crafting plans)! Hopefully, you won't\nreally notice anything except that entering new items and computing really complicated crafting\nplans don't take so long.\n

2015-02-19

I just made some major updates to the crafting algorithm. Without getting into details, I'll say\nthat there are a few things you should notice:

  1. it will favor recipes which produce more of an item versus those which produce fewer (e.g.,\nIC2 plates get made with the Block Cutter instead of the Forge Hammer)
  2. metal ingots will frequently (but not always) get crafted using 2x recipes instead of\nsmelting ore directly in a furnace
  3. recipes for vanilla items added by mods are now available (e.g., smelting Iron Dust into Iron\ningots)

2015-02-10

I just pushed up some fixes to avoid confusing various items of the same name from different\nmods. The best example of this are the two Wrenches from Buildcraft and IC2, but there are a\nbunch of others.\n

2015-02-09

This release fixes a number of small issues and improves performance in a number of places. Most\nespecially, all links within the site have been changed to update the page in place without the\nneed to re-download anything. This should make browsing between item pages much faster.\n

2015-02-08

This is the singlest largest expansion of the website yet! Each item from each mod now has its\nown page! This will expand in the future, but for now this shows all the recipes for the item as\nwell as all the closely related items and the others items that can be made using the item.

This also changes things so that links to Crafting Guide from other sites will first go to the\nitem's page (instead of to the crafting plan). Not to worry though... there's still a direct\nlink from each item to the full crafting plan for that item.\n

2015-02-02

Crafting Guide now has support for EnderIO! I tend to add new mods in order of those with the\nmost votes, so remember to suggest your favorites!

");;return buf.join(""); +}; + +this["JST"]["inventory"] = function template(locals) { +var buf = []; +var jade_mixins = {}; +var jade_interp; + +buf.push("

");;return buf.join(""); +}; + +this["JST"]["inventory_table"] = function template(locals) { +var buf = []; +var jade_mixins = {}; +var jade_interp; + +buf.push("
");;return buf.join(""); +}; + +this["JST"]["item"] = function template(locals) { +var buf = []; +var jade_mixins = {}; +var jade_interp; + +buf.push("
");;return buf.join(""); +}; + +this["JST"]["item_group"] = function template(locals) { +var buf = []; +var jade_mixins = {}; +var jade_interp; + +buf.push("

");;return buf.join(""); +}; + +this["JST"]["item_page"] = function template(locals) { +var buf = []; +var jade_mixins = {}; +var jade_interp; + +buf.push("

See Crafting Plan

\n\n\n\n

from

Recipes

");;return buf.join(""); +}; + +this["JST"]["minimal_recipe"] = function template(locals) { +var buf = []; +var jade_mixins = {}; +var jade_interp; + +buf.push("

");;return buf.join(""); +}; + +this["JST"]["mod"] = function template(locals) { +var buf = []; +var jade_mixins = {}; +var jade_interp; + +buf.push("

");;return buf.join(""); +}; + +this["JST"]["mod_pack"] = function template(locals) { +var buf = []; +var jade_mixins = {}; +var jade_interp; + +buf.push("

Mod Pack

");;return buf.join(""); +}; + +this["JST"]["mod_page"] = function template(locals) { +var buf = []; +var jade_mixins = {}; +var jade_interp; + +buf.push("

Offical Home Page

Documentation

Download

\n\n\n\n

");;return buf.join(""); +}; + +this["JST"]["mod_selector"] = function template(locals) { +var buf = []; +var jade_mixins = {}; +var jade_interp; + +buf.push("

");;return buf.join(""); +}; + +this["JST"]["stack"] = function template(locals) { +var buf = []; +var jade_mixins = {}; +var jade_interp; + +buf.push("");;return buf.join(""); +}; + +if (typeof exports === 'object' && exports) {module.exports = this["JST"];} \ No newline at end of file diff --git a/src/pages/includes/_addthis.jade b/src/jade/includes/_addthis.jade similarity index 100% rename from src/pages/includes/_addthis.jade rename to src/jade/includes/_addthis.jade diff --git a/src/pages/includes/_footer.jade b/src/jade/includes/_footer.jade similarity index 100% rename from src/pages/includes/_footer.jade rename to src/jade/includes/_footer.jade diff --git a/src/pages/includes/_google_analytics.jade b/src/jade/includes/_google_analytics.jade similarity index 100% rename from src/pages/includes/_google_analytics.jade rename to src/jade/includes/_google_analytics.jade diff --git a/src/pages/includes/_header.jade b/src/jade/includes/_header.jade similarity index 100% rename from src/pages/includes/_header.jade rename to src/jade/includes/_header.jade diff --git a/src/pages/index.jade b/src/jade/index.jade similarity index 100% rename from src/pages/index.jade rename to src/jade/index.jade diff --git a/src/pages/layouts/basic.jade b/src/jade/layouts/basic.jade similarity index 100% rename from src/pages/layouts/basic.jade rename to src/jade/layouts/basic.jade diff --git a/src/templates/browse_page.jade b/src/jade/templates/browse_page.jade similarity index 100% rename from src/templates/browse_page.jade rename to src/jade/templates/browse_page.jade diff --git a/src/templates/configure_page.jade b/src/jade/templates/configure_page.jade similarity index 100% rename from src/templates/configure_page.jade rename to src/jade/templates/configure_page.jade diff --git a/src/templates/craft_page.jade b/src/jade/templates/craft_page.jade similarity index 100% rename from src/templates/craft_page.jade rename to src/jade/templates/craft_page.jade diff --git a/src/templates/crafting_grid.jade b/src/jade/templates/crafting_grid.jade similarity index 100% rename from src/templates/crafting_grid.jade rename to src/jade/templates/crafting_grid.jade diff --git a/src/templates/crafting_table.jade b/src/jade/templates/crafting_table.jade similarity index 100% rename from src/templates/crafting_table.jade rename to src/jade/templates/crafting_table.jade diff --git a/src/templates/feedback.jade b/src/jade/templates/feedback.jade similarity index 100% rename from src/templates/feedback.jade rename to src/jade/templates/feedback.jade diff --git a/src/templates/full_recipe.jade b/src/jade/templates/full_recipe.jade similarity index 100% rename from src/templates/full_recipe.jade rename to src/jade/templates/full_recipe.jade diff --git a/src/templates/home_page.jade b/src/jade/templates/home_page.jade similarity index 93% rename from src/templates/home_page.jade rename to src/jade/templates/home_page.jade index 8014fb285..9787ffc53 100644 --- a/src/templates/home_page.jade +++ b/src/jade/templates/home_page.jade @@ -7,13 +7,13 @@ .view__home_page .sidebar - .titleImage - .titleImage - .titleImage - .titleImage - .titleImage - .titleImage - .titleImage + .titleImage + .titleImage + .titleImage + .titleImage + .titleImage + .titleImage + .titleImage include ./includes/_sidebar_skyscraper.html diff --git a/src/templates/includes/_sidebar_skyscraper.html b/src/jade/templates/includes/_sidebar_skyscraper.html similarity index 100% rename from src/templates/includes/_sidebar_skyscraper.html rename to src/jade/templates/includes/_sidebar_skyscraper.html diff --git a/src/templates/inventory.jade b/src/jade/templates/inventory.jade similarity index 100% rename from src/templates/inventory.jade rename to src/jade/templates/inventory.jade diff --git a/src/templates/inventory_table.jade b/src/jade/templates/inventory_table.jade similarity index 100% rename from src/templates/inventory_table.jade rename to src/jade/templates/inventory_table.jade diff --git a/src/templates/item.jade b/src/jade/templates/item.jade similarity index 100% rename from src/templates/item.jade rename to src/jade/templates/item.jade diff --git a/src/templates/item_group.jade b/src/jade/templates/item_group.jade similarity index 100% rename from src/templates/item_group.jade rename to src/jade/templates/item_group.jade diff --git a/src/templates/item_page.jade b/src/jade/templates/item_page.jade similarity index 100% rename from src/templates/item_page.jade rename to src/jade/templates/item_page.jade diff --git a/src/templates/minimal_recipe.jade b/src/jade/templates/minimal_recipe.jade similarity index 100% rename from src/templates/minimal_recipe.jade rename to src/jade/templates/minimal_recipe.jade diff --git a/src/templates/mod.jade b/src/jade/templates/mod.jade similarity index 100% rename from src/templates/mod.jade rename to src/jade/templates/mod.jade diff --git a/src/templates/mod_pack.jade b/src/jade/templates/mod_pack.jade similarity index 100% rename from src/templates/mod_pack.jade rename to src/jade/templates/mod_pack.jade diff --git a/src/templates/mod_page.jade b/src/jade/templates/mod_page.jade similarity index 100% rename from src/templates/mod_page.jade rename to src/jade/templates/mod_page.jade diff --git a/src/templates/mod_selector.jade b/src/jade/templates/mod_selector.jade similarity index 100% rename from src/templates/mod_selector.jade rename to src/jade/templates/mod_selector.jade diff --git a/src/templates/stack.jade b/src/jade/templates/stack.jade similarity index 100% rename from src/templates/stack.jade rename to src/jade/templates/stack.jade diff --git a/src/pages/test.jade b/src/jade/test.jade similarity index 85% rename from src/pages/test.jade rename to src/jade/test.jade index 438ff22e9..193b815f2 100644 --- a/src/pages/test.jade +++ b/src/jade/test.jade @@ -9,7 +9,7 @@ extend ./layouts/basic append styles link(rel="stylesheet", type="text/css", href="css/mocha.css") - style #mocha-stats { position: absolute; top: 9em; } + style #mocha-stats { position: absolute; top: 12em; } block content #mocha diff --git a/src/css/addthis.scss b/src/scss/addthis.scss similarity index 100% rename from src/css/addthis.scss rename to src/scss/addthis.scss diff --git a/src/css/classes.scss b/src/scss/classes.scss similarity index 100% rename from src/css/classes.scss rename to src/scss/classes.scss diff --git a/src/css/main.scss b/src/scss/main.scss similarity index 100% rename from src/css/main.scss rename to src/scss/main.scss diff --git a/src/css/mixins.scss b/src/scss/mixins.scss similarity index 100% rename from src/css/mixins.scss rename to src/scss/mixins.scss diff --git a/src/css/reset.scss b/src/scss/reset.scss similarity index 100% rename from src/css/reset.scss rename to src/scss/reset.scss diff --git a/src/css/tags.scss b/src/scss/tags.scss similarity index 100% rename from src/css/tags.scss rename to src/scss/tags.scss diff --git a/src/css/templates/browse_page.scss b/src/scss/templates/browse_page.scss similarity index 100% rename from src/css/templates/browse_page.scss rename to src/scss/templates/browse_page.scss diff --git a/src/css/templates/craft_page.scss b/src/scss/templates/craft_page.scss similarity index 100% rename from src/css/templates/craft_page.scss rename to src/scss/templates/craft_page.scss diff --git a/src/css/templates/crafting_grid.scss b/src/scss/templates/crafting_grid.scss similarity index 100% rename from src/css/templates/crafting_grid.scss rename to src/scss/templates/crafting_grid.scss diff --git a/src/css/templates/crafting_table.scss b/src/scss/templates/crafting_table.scss similarity index 100% rename from src/css/templates/crafting_table.scss rename to src/scss/templates/crafting_table.scss diff --git a/src/css/templates/feedback.scss b/src/scss/templates/feedback.scss similarity index 100% rename from src/css/templates/feedback.scss rename to src/scss/templates/feedback.scss diff --git a/src/css/templates/full_recipe.scss b/src/scss/templates/full_recipe.scss similarity index 100% rename from src/css/templates/full_recipe.scss rename to src/scss/templates/full_recipe.scss diff --git a/src/css/templates/home_page.scss b/src/scss/templates/home_page.scss similarity index 100% rename from src/css/templates/home_page.scss rename to src/scss/templates/home_page.scss diff --git a/src/css/templates/index.scss b/src/scss/templates/index.scss similarity index 100% rename from src/css/templates/index.scss rename to src/scss/templates/index.scss diff --git a/src/css/templates/inventory.scss b/src/scss/templates/inventory.scss similarity index 100% rename from src/css/templates/inventory.scss rename to src/scss/templates/inventory.scss diff --git a/src/css/templates/inventory_table.scss b/src/scss/templates/inventory_table.scss similarity index 100% rename from src/css/templates/inventory_table.scss rename to src/scss/templates/inventory_table.scss diff --git a/src/css/templates/item.scss b/src/scss/templates/item.scss similarity index 100% rename from src/css/templates/item.scss rename to src/scss/templates/item.scss diff --git a/src/css/templates/item_page.scss b/src/scss/templates/item_page.scss similarity index 100% rename from src/css/templates/item_page.scss rename to src/scss/templates/item_page.scss diff --git a/src/css/templates/minimal_recipe.scss b/src/scss/templates/minimal_recipe.scss similarity index 100% rename from src/css/templates/minimal_recipe.scss rename to src/scss/templates/minimal_recipe.scss diff --git a/src/css/templates/mod.scss b/src/scss/templates/mod.scss similarity index 100% rename from src/css/templates/mod.scss rename to src/scss/templates/mod.scss diff --git a/src/css/templates/mod_pack.scss b/src/scss/templates/mod_pack.scss similarity index 100% rename from src/css/templates/mod_pack.scss rename to src/scss/templates/mod_pack.scss diff --git a/src/css/templates/mod_page.scss b/src/scss/templates/mod_page.scss similarity index 100% rename from src/css/templates/mod_page.scss rename to src/scss/templates/mod_page.scss diff --git a/src/css/templates/mod_selector.scss b/src/scss/templates/mod_selector.scss similarity index 100% rename from src/css/templates/mod_selector.scss rename to src/scss/templates/mod_selector.scss diff --git a/src/css/templates/stack.scss b/src/scss/templates/stack.scss similarity index 100% rename from src/css/templates/stack.scss rename to src/scss/templates/stack.scss diff --git a/src/css/views.scss b/src/scss/views.scss similarity index 100% rename from src/css/views.scss rename to src/scss/views.scss diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/128_spatial_component.png b/static/browse/applied_energistics_2/128_spatial_component/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/128_spatial_component.png rename to static/browse/applied_energistics_2/128_spatial_component/icon.png diff --git a/prerender/browse/applied_energistics_2/128_spatial_component/index.html b/static/browse/applied_energistics_2/128_spatial_component/index.html similarity index 100% rename from prerender/browse/applied_energistics_2/128_spatial_component/index.html rename to static/browse/applied_energistics_2/128_spatial_component/index.html diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/128_spatial_storage_cell.png b/static/browse/applied_energistics_2/128_spatial_storage_cell/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/128_spatial_storage_cell.png rename to static/browse/applied_energistics_2/128_spatial_storage_cell/icon.png diff --git a/prerender/browse/applied_energistics_2/128_spatial_storage_cell/index.html b/static/browse/applied_energistics_2/128_spatial_storage_cell/index.html similarity index 100% rename from prerender/browse/applied_energistics_2/128_spatial_storage_cell/index.html rename to static/browse/applied_energistics_2/128_spatial_storage_cell/index.html diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/16_spatial_component.png b/static/browse/applied_energistics_2/16_spatial_component/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/16_spatial_component.png rename to static/browse/applied_energistics_2/16_spatial_component/icon.png diff --git a/prerender/browse/applied_energistics_2/16_spatial_component/index.html b/static/browse/applied_energistics_2/16_spatial_component/index.html similarity index 100% rename from prerender/browse/applied_energistics_2/16_spatial_component/index.html rename to static/browse/applied_energistics_2/16_spatial_component/index.html diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/16_spatial_storage_cell.png b/static/browse/applied_energistics_2/16_spatial_storage_cell/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/16_spatial_storage_cell.png rename to static/browse/applied_energistics_2/16_spatial_storage_cell/icon.png diff --git a/prerender/browse/applied_energistics_2/16_spatial_storage_cell/index.html b/static/browse/applied_energistics_2/16_spatial_storage_cell/index.html similarity index 100% rename from prerender/browse/applied_energistics_2/16_spatial_storage_cell/index.html rename to static/browse/applied_energistics_2/16_spatial_storage_cell/index.html diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/16k_crafting_storage.png b/static/browse/applied_energistics_2/16k_crafting_storage/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/16k_crafting_storage.png rename to static/browse/applied_energistics_2/16k_crafting_storage/icon.png diff --git a/prerender/browse/applied_energistics_2/16k_crafting_storage/index.html b/static/browse/applied_energistics_2/16k_crafting_storage/index.html similarity index 100% rename from prerender/browse/applied_energistics_2/16k_crafting_storage/index.html rename to static/browse/applied_energistics_2/16k_crafting_storage/index.html diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/16k_me_storage_cell.png b/static/browse/applied_energistics_2/16k_me_storage_cell/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/16k_me_storage_cell.png rename to static/browse/applied_energistics_2/16k_me_storage_cell/icon.png diff --git a/prerender/browse/applied_energistics_2/16k_me_storage_cell/index.html b/static/browse/applied_energistics_2/16k_me_storage_cell/index.html similarity index 100% rename from prerender/browse/applied_energistics_2/16k_me_storage_cell/index.html rename to static/browse/applied_energistics_2/16k_me_storage_cell/index.html diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/16k_me_storage_component.png b/static/browse/applied_energistics_2/16k_me_storage_component/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/16k_me_storage_component.png rename to static/browse/applied_energistics_2/16k_me_storage_component/icon.png diff --git a/prerender/browse/applied_energistics_2/16k_me_storage_component/index.html b/static/browse/applied_energistics_2/16k_me_storage_component/index.html similarity index 100% rename from prerender/browse/applied_energistics_2/16k_me_storage_component/index.html rename to static/browse/applied_energistics_2/16k_me_storage_component/index.html diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/1k_crafting_storage.png b/static/browse/applied_energistics_2/1k_crafting_storage/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/1k_crafting_storage.png rename to static/browse/applied_energistics_2/1k_crafting_storage/icon.png diff --git a/prerender/browse/applied_energistics_2/1k_crafting_storage/index.html b/static/browse/applied_energistics_2/1k_crafting_storage/index.html similarity index 100% rename from prerender/browse/applied_energistics_2/1k_crafting_storage/index.html rename to static/browse/applied_energistics_2/1k_crafting_storage/index.html diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/1k_me_storage_cell.png b/static/browse/applied_energistics_2/1k_me_storage_cell/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/1k_me_storage_cell.png rename to static/browse/applied_energistics_2/1k_me_storage_cell/icon.png diff --git a/prerender/browse/applied_energistics_2/1k_me_storage_cell/index.html b/static/browse/applied_energistics_2/1k_me_storage_cell/index.html similarity index 100% rename from prerender/browse/applied_energistics_2/1k_me_storage_cell/index.html rename to static/browse/applied_energistics_2/1k_me_storage_cell/index.html diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/1k_me_storage_component.png b/static/browse/applied_energistics_2/1k_me_storage_component/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/1k_me_storage_component.png rename to static/browse/applied_energistics_2/1k_me_storage_component/icon.png diff --git a/prerender/browse/applied_energistics_2/1k_me_storage_component/index.html b/static/browse/applied_energistics_2/1k_me_storage_component/index.html similarity index 100% rename from prerender/browse/applied_energistics_2/1k_me_storage_component/index.html rename to static/browse/applied_energistics_2/1k_me_storage_component/index.html diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/2_spatial_component.png b/static/browse/applied_energistics_2/2_spatial_component/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/2_spatial_component.png rename to static/browse/applied_energistics_2/2_spatial_component/icon.png diff --git a/prerender/browse/applied_energistics_2/2_spatial_component/index.html b/static/browse/applied_energistics_2/2_spatial_component/index.html similarity index 100% rename from prerender/browse/applied_energistics_2/2_spatial_component/index.html rename to static/browse/applied_energistics_2/2_spatial_component/index.html diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/2_spatial_storage_cell.png b/static/browse/applied_energistics_2/2_spatial_storage_cell/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/2_spatial_storage_cell.png rename to static/browse/applied_energistics_2/2_spatial_storage_cell/icon.png diff --git a/prerender/browse/applied_energistics_2/2_spatial_storage_cell/index.html b/static/browse/applied_energistics_2/2_spatial_storage_cell/index.html similarity index 100% rename from prerender/browse/applied_energistics_2/2_spatial_storage_cell/index.html rename to static/browse/applied_energistics_2/2_spatial_storage_cell/index.html diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/4k_crafting_storage.png b/static/browse/applied_energistics_2/4k_crafting_storage/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/4k_crafting_storage.png rename to static/browse/applied_energistics_2/4k_crafting_storage/icon.png diff --git a/prerender/browse/applied_energistics_2/4k_crafting_storage/index.html b/static/browse/applied_energistics_2/4k_crafting_storage/index.html similarity index 100% rename from prerender/browse/applied_energistics_2/4k_crafting_storage/index.html rename to static/browse/applied_energistics_2/4k_crafting_storage/index.html diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/4k_me_storage_cell.png b/static/browse/applied_energistics_2/4k_me_storage_cell/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/4k_me_storage_cell.png rename to static/browse/applied_energistics_2/4k_me_storage_cell/icon.png diff --git a/prerender/browse/applied_energistics_2/4k_me_storage_cell/index.html b/static/browse/applied_energistics_2/4k_me_storage_cell/index.html similarity index 100% rename from prerender/browse/applied_energistics_2/4k_me_storage_cell/index.html rename to static/browse/applied_energistics_2/4k_me_storage_cell/index.html diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/4k_me_storage_component.png b/static/browse/applied_energistics_2/4k_me_storage_component/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/4k_me_storage_component.png rename to static/browse/applied_energistics_2/4k_me_storage_component/icon.png diff --git a/prerender/browse/applied_energistics_2/4k_me_storage_component/index.html b/static/browse/applied_energistics_2/4k_me_storage_component/index.html similarity index 100% rename from prerender/browse/applied_energistics_2/4k_me_storage_component/index.html rename to static/browse/applied_energistics_2/4k_me_storage_component/index.html diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/64k_crafting_storage.png b/static/browse/applied_energistics_2/64k_crafting_storage/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/64k_crafting_storage.png rename to static/browse/applied_energistics_2/64k_crafting_storage/icon.png diff --git a/prerender/browse/applied_energistics_2/64k_crafting_storage/index.html b/static/browse/applied_energistics_2/64k_crafting_storage/index.html similarity index 100% rename from prerender/browse/applied_energistics_2/64k_crafting_storage/index.html rename to static/browse/applied_energistics_2/64k_crafting_storage/index.html diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/64k_me_storage_cell.png b/static/browse/applied_energistics_2/64k_me_storage_cell/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/64k_me_storage_cell.png rename to static/browse/applied_energistics_2/64k_me_storage_cell/icon.png diff --git a/prerender/browse/applied_energistics_2/64k_me_storage_cell/index.html b/static/browse/applied_energistics_2/64k_me_storage_cell/index.html similarity index 100% rename from prerender/browse/applied_energistics_2/64k_me_storage_cell/index.html rename to static/browse/applied_energistics_2/64k_me_storage_cell/index.html diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/64k_me_storage_component.png b/static/browse/applied_energistics_2/64k_me_storage_component/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/64k_me_storage_component.png rename to static/browse/applied_energistics_2/64k_me_storage_component/icon.png diff --git a/prerender/browse/applied_energistics_2/64k_me_storage_component/index.html b/static/browse/applied_energistics_2/64k_me_storage_component/index.html similarity index 100% rename from prerender/browse/applied_energistics_2/64k_me_storage_component/index.html rename to static/browse/applied_energistics_2/64k_me_storage_component/index.html diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/acceleration_card.png b/static/browse/applied_energistics_2/acceleration_card/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/acceleration_card.png rename to static/browse/applied_energistics_2/acceleration_card/icon.png diff --git a/prerender/browse/applied_energistics_2/acceleration_card/index.html b/static/browse/applied_energistics_2/acceleration_card/index.html similarity index 100% rename from prerender/browse/applied_energistics_2/acceleration_card/index.html rename to static/browse/applied_energistics_2/acceleration_card/index.html diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/advanced_card.png b/static/browse/applied_energistics_2/advanced_card/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/advanced_card.png rename to static/browse/applied_energistics_2/advanced_card/icon.png diff --git a/prerender/browse/applied_energistics_2/advanced_card/index.html b/static/browse/applied_energistics_2/advanced_card/index.html similarity index 100% rename from prerender/browse/applied_energistics_2/advanced_card/index.html rename to static/browse/applied_energistics_2/advanced_card/index.html diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/annihilation_core.png b/static/browse/applied_energistics_2/annihilation_core/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/annihilation_core.png rename to static/browse/applied_energistics_2/annihilation_core/icon.png diff --git a/prerender/browse/applied_energistics_2/annihilation_core/index.html b/static/browse/applied_energistics_2/annihilation_core/index.html similarity index 100% rename from prerender/browse/applied_energistics_2/annihilation_core/index.html rename to static/browse/applied_energistics_2/annihilation_core/index.html diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/basic_card.png b/static/browse/applied_energistics_2/basic_card/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/basic_card.png rename to static/browse/applied_energistics_2/basic_card/icon.png diff --git a/prerender/browse/applied_energistics_2/basic_card/index.html b/static/browse/applied_energistics_2/basic_card/index.html similarity index 100% rename from prerender/browse/applied_energistics_2/basic_card/index.html rename to static/browse/applied_energistics_2/basic_card/index.html diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/biometric_card.png b/static/browse/applied_energistics_2/biometric_card/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/biometric_card.png rename to static/browse/applied_energistics_2/biometric_card/icon.png diff --git a/prerender/browse/applied_energistics_2/biometric_card/index.html b/static/browse/applied_energistics_2/biometric_card/index.html similarity index 100% rename from prerender/browse/applied_energistics_2/biometric_card/index.html rename to static/browse/applied_energistics_2/biometric_card/index.html diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/blank_pattern.png b/static/browse/applied_energistics_2/blank_pattern/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/blank_pattern.png rename to static/browse/applied_energistics_2/blank_pattern/icon.png diff --git a/prerender/browse/applied_energistics_2/blank_pattern/index.html b/static/browse/applied_energistics_2/blank_pattern/index.html similarity index 100% rename from prerender/browse/applied_energistics_2/blank_pattern/index.html rename to static/browse/applied_energistics_2/blank_pattern/index.html diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/bright_illuminated_panel.png b/static/browse/applied_energistics_2/bright_illuminated_panel/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/bright_illuminated_panel.png rename to static/browse/applied_energistics_2/bright_illuminated_panel/icon.png diff --git a/prerender/browse/applied_energistics_2/bright_illuminated_panel/index.html b/static/browse/applied_energistics_2/bright_illuminated_panel/index.html similarity index 100% rename from prerender/browse/applied_energistics_2/bright_illuminated_panel/index.html rename to static/browse/applied_energistics_2/bright_illuminated_panel/index.html diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/cable_anchor.png b/static/browse/applied_energistics_2/cable_anchor/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/cable_anchor.png rename to static/browse/applied_energistics_2/cable_anchor/icon.png diff --git a/prerender/browse/applied_energistics_2/cable_anchor/index.html b/static/browse/applied_energistics_2/cable_anchor/index.html similarity index 100% rename from prerender/browse/applied_energistics_2/cable_anchor/index.html rename to static/browse/applied_energistics_2/cable_anchor/index.html diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/cable_facade_stone.png b/static/browse/applied_energistics_2/cable_facade_stone/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/cable_facade_stone.png rename to static/browse/applied_energistics_2/cable_facade_stone/icon.png diff --git a/prerender/browse/applied_energistics_2/cable_facade_stone/index.html b/static/browse/applied_energistics_2/cable_facade_stone/index.html similarity index 100% rename from prerender/browse/applied_energistics_2/cable_facade_stone/index.html rename to static/browse/applied_energistics_2/cable_facade_stone/index.html diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/calculation_processor.png b/static/browse/applied_energistics_2/calculation_processor/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/calculation_processor.png rename to static/browse/applied_energistics_2/calculation_processor/icon.png diff --git a/prerender/browse/applied_energistics_2/calculation_processor/index.html b/static/browse/applied_energistics_2/calculation_processor/index.html similarity index 100% rename from prerender/browse/applied_energistics_2/calculation_processor/index.html rename to static/browse/applied_energistics_2/calculation_processor/index.html diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/capacity_card.png b/static/browse/applied_energistics_2/capacity_card/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/capacity_card.png rename to static/browse/applied_energistics_2/capacity_card/icon.png diff --git a/prerender/browse/applied_energistics_2/capacity_card/index.html b/static/browse/applied_energistics_2/capacity_card/index.html similarity index 100% rename from prerender/browse/applied_energistics_2/capacity_card/index.html rename to static/browse/applied_energistics_2/capacity_card/index.html diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/cell_workbench.png b/static/browse/applied_energistics_2/cell_workbench/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/cell_workbench.png rename to static/browse/applied_energistics_2/cell_workbench/icon.png diff --git a/prerender/browse/applied_energistics_2/cell_workbench/index.html b/static/browse/applied_energistics_2/cell_workbench/index.html similarity index 100% rename from prerender/browse/applied_energistics_2/cell_workbench/index.html rename to static/browse/applied_energistics_2/cell_workbench/index.html diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/certus_quartz_axe.png b/static/browse/applied_energistics_2/certus_quartz_axe/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/certus_quartz_axe.png rename to static/browse/applied_energistics_2/certus_quartz_axe/icon.png diff --git a/prerender/browse/applied_energistics_2/certus_quartz_axe/index.html b/static/browse/applied_energistics_2/certus_quartz_axe/index.html similarity index 100% rename from prerender/browse/applied_energistics_2/certus_quartz_axe/index.html rename to static/browse/applied_energistics_2/certus_quartz_axe/index.html diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/certus_quartz_block.png b/static/browse/applied_energistics_2/certus_quartz_block/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/certus_quartz_block.png rename to static/browse/applied_energistics_2/certus_quartz_block/icon.png diff --git a/prerender/browse/applied_energistics_2/certus_quartz_block/index.html b/static/browse/applied_energistics_2/certus_quartz_block/index.html similarity index 100% rename from prerender/browse/applied_energistics_2/certus_quartz_block/index.html rename to static/browse/applied_energistics_2/certus_quartz_block/index.html diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/certus_quartz_crystal.png b/static/browse/applied_energistics_2/certus_quartz_crystal/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/certus_quartz_crystal.png rename to static/browse/applied_energistics_2/certus_quartz_crystal/icon.png diff --git a/prerender/browse/applied_energistics_2/certus_quartz_crystal/index.html b/static/browse/applied_energistics_2/certus_quartz_crystal/index.html similarity index 100% rename from prerender/browse/applied_energistics_2/certus_quartz_crystal/index.html rename to static/browse/applied_energistics_2/certus_quartz_crystal/index.html diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/certus_quartz_cutting_knife.png b/static/browse/applied_energistics_2/certus_quartz_cutting_knife/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/certus_quartz_cutting_knife.png rename to static/browse/applied_energistics_2/certus_quartz_cutting_knife/icon.png diff --git a/prerender/browse/applied_energistics_2/certus_quartz_cutting_knife/index.html b/static/browse/applied_energistics_2/certus_quartz_cutting_knife/index.html similarity index 100% rename from prerender/browse/applied_energistics_2/certus_quartz_cutting_knife/index.html rename to static/browse/applied_energistics_2/certus_quartz_cutting_knife/index.html diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/certus_quartz_dust.png b/static/browse/applied_energistics_2/certus_quartz_dust/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/certus_quartz_dust.png rename to static/browse/applied_energistics_2/certus_quartz_dust/icon.png diff --git a/prerender/browse/applied_energistics_2/certus_quartz_dust/index.html b/static/browse/applied_energistics_2/certus_quartz_dust/index.html similarity index 100% rename from prerender/browse/applied_energistics_2/certus_quartz_dust/index.html rename to static/browse/applied_energistics_2/certus_quartz_dust/index.html diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/certus_quartz_hoe.png b/static/browse/applied_energistics_2/certus_quartz_hoe/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/certus_quartz_hoe.png rename to static/browse/applied_energistics_2/certus_quartz_hoe/icon.png diff --git a/prerender/browse/applied_energistics_2/certus_quartz_hoe/index.html b/static/browse/applied_energistics_2/certus_quartz_hoe/index.html similarity index 100% rename from prerender/browse/applied_energistics_2/certus_quartz_hoe/index.html rename to static/browse/applied_energistics_2/certus_quartz_hoe/index.html diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/certus_quartz_ore.png b/static/browse/applied_energistics_2/certus_quartz_ore/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/certus_quartz_ore.png rename to static/browse/applied_energistics_2/certus_quartz_ore/icon.png diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/certus_quartz_pickaxe.png b/static/browse/applied_energistics_2/certus_quartz_pickaxe/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/certus_quartz_pickaxe.png rename to static/browse/applied_energistics_2/certus_quartz_pickaxe/icon.png diff --git a/prerender/browse/applied_energistics_2/certus_quartz_pickaxe/index.html b/static/browse/applied_energistics_2/certus_quartz_pickaxe/index.html similarity index 100% rename from prerender/browse/applied_energistics_2/certus_quartz_pickaxe/index.html rename to static/browse/applied_energistics_2/certus_quartz_pickaxe/index.html diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/certus_quartz_pillar.png b/static/browse/applied_energistics_2/certus_quartz_pillar/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/certus_quartz_pillar.png rename to static/browse/applied_energistics_2/certus_quartz_pillar/icon.png diff --git a/prerender/browse/applied_energistics_2/certus_quartz_pillar/index.html b/static/browse/applied_energistics_2/certus_quartz_pillar/index.html similarity index 100% rename from prerender/browse/applied_energistics_2/certus_quartz_pillar/index.html rename to static/browse/applied_energistics_2/certus_quartz_pillar/index.html diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/certus_quartz_seed.png b/static/browse/applied_energistics_2/certus_quartz_seed/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/certus_quartz_seed.png rename to static/browse/applied_energistics_2/certus_quartz_seed/icon.png diff --git a/prerender/browse/applied_energistics_2/certus_quartz_seed/index.html b/static/browse/applied_energistics_2/certus_quartz_seed/index.html similarity index 100% rename from prerender/browse/applied_energistics_2/certus_quartz_seed/index.html rename to static/browse/applied_energistics_2/certus_quartz_seed/index.html diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/certus_quartz_shovel.png b/static/browse/applied_energistics_2/certus_quartz_shovel/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/certus_quartz_shovel.png rename to static/browse/applied_energistics_2/certus_quartz_shovel/icon.png diff --git a/prerender/browse/applied_energistics_2/certus_quartz_shovel/index.html b/static/browse/applied_energistics_2/certus_quartz_shovel/index.html similarity index 100% rename from prerender/browse/applied_energistics_2/certus_quartz_shovel/index.html rename to static/browse/applied_energistics_2/certus_quartz_shovel/index.html diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/certus_quartz_sword.png b/static/browse/applied_energistics_2/certus_quartz_sword/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/certus_quartz_sword.png rename to static/browse/applied_energistics_2/certus_quartz_sword/icon.png diff --git a/prerender/browse/applied_energistics_2/certus_quartz_sword/index.html b/static/browse/applied_energistics_2/certus_quartz_sword/index.html similarity index 100% rename from prerender/browse/applied_energistics_2/certus_quartz_sword/index.html rename to static/browse/applied_energistics_2/certus_quartz_sword/index.html diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/certus_quartz_wrench.png b/static/browse/applied_energistics_2/certus_quartz_wrench/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/certus_quartz_wrench.png rename to static/browse/applied_energistics_2/certus_quartz_wrench/icon.png diff --git a/prerender/browse/applied_energistics_2/certus_quartz_wrench/index.html b/static/browse/applied_energistics_2/certus_quartz_wrench/index.html similarity index 100% rename from prerender/browse/applied_energistics_2/certus_quartz_wrench/index.html rename to static/browse/applied_energistics_2/certus_quartz_wrench/index.html diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/charged_certus_quartz_crystal.png b/static/browse/applied_energistics_2/charged_certus_quartz_crystal/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/charged_certus_quartz_crystal.png rename to static/browse/applied_energistics_2/charged_certus_quartz_crystal/icon.png diff --git a/prerender/browse/applied_energistics_2/charged_certus_quartz_crystal/index.html b/static/browse/applied_energistics_2/charged_certus_quartz_crystal/index.html similarity index 100% rename from prerender/browse/applied_energistics_2/charged_certus_quartz_crystal/index.html rename to static/browse/applied_energistics_2/charged_certus_quartz_crystal/index.html diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/charged_certus_quartz_ore.png b/static/browse/applied_energistics_2/charged_certus_quartz_ore/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/charged_certus_quartz_ore.png rename to static/browse/applied_energistics_2/charged_certus_quartz_ore/icon.png diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/charged_quartz_fixture.png b/static/browse/applied_energistics_2/charged_quartz_fixture/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/charged_quartz_fixture.png rename to static/browse/applied_energistics_2/charged_quartz_fixture/icon.png diff --git a/prerender/browse/applied_energistics_2/charged_quartz_fixture/index.html b/static/browse/applied_energistics_2/charged_quartz_fixture/index.html similarity index 100% rename from prerender/browse/applied_energistics_2/charged_quartz_fixture/index.html rename to static/browse/applied_energistics_2/charged_quartz_fixture/index.html diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/charged_staff.png b/static/browse/applied_energistics_2/charged_staff/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/charged_staff.png rename to static/browse/applied_energistics_2/charged_staff/icon.png diff --git a/prerender/browse/applied_energistics_2/charged_staff/index.html b/static/browse/applied_energistics_2/charged_staff/index.html similarity index 100% rename from prerender/browse/applied_energistics_2/charged_staff/index.html rename to static/browse/applied_energistics_2/charged_staff/index.html diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/charger.png b/static/browse/applied_energistics_2/charger/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/charger.png rename to static/browse/applied_energistics_2/charger/icon.png diff --git a/prerender/browse/applied_energistics_2/charger/index.html b/static/browse/applied_energistics_2/charger/index.html similarity index 100% rename from prerender/browse/applied_energistics_2/charger/index.html rename to static/browse/applied_energistics_2/charger/index.html diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/chiseled_certus_quartz_block.png b/static/browse/applied_energistics_2/chiseled_certus_quartz_block/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/chiseled_certus_quartz_block.png rename to static/browse/applied_energistics_2/chiseled_certus_quartz_block/icon.png diff --git a/prerender/browse/applied_energistics_2/chiseled_certus_quartz_block/index.html b/static/browse/applied_energistics_2/chiseled_certus_quartz_block/index.html similarity index 100% rename from prerender/browse/applied_energistics_2/chiseled_certus_quartz_block/index.html rename to static/browse/applied_energistics_2/chiseled_certus_quartz_block/index.html diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/color_applicator.png b/static/browse/applied_energistics_2/color_applicator/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/color_applicator.png rename to static/browse/applied_energistics_2/color_applicator/icon.png diff --git a/prerender/browse/applied_energistics_2/color_applicator/index.html b/static/browse/applied_energistics_2/color_applicator/index.html similarity index 100% rename from prerender/browse/applied_energistics_2/color_applicator/index.html rename to static/browse/applied_energistics_2/color_applicator/index.html diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/crafting_card.png b/static/browse/applied_energistics_2/crafting_card/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/crafting_card.png rename to static/browse/applied_energistics_2/crafting_card/icon.png diff --git a/prerender/browse/applied_energistics_2/crafting_card/index.html b/static/browse/applied_energistics_2/crafting_card/index.html similarity index 100% rename from prerender/browse/applied_energistics_2/crafting_card/index.html rename to static/browse/applied_energistics_2/crafting_card/index.html diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/crafting_co_processing_unit.png b/static/browse/applied_energistics_2/crafting_co_processing_unit/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/crafting_co_processing_unit.png rename to static/browse/applied_energistics_2/crafting_co_processing_unit/icon.png diff --git a/prerender/browse/applied_energistics_2/crafting_co_processing_unit/index.html b/static/browse/applied_energistics_2/crafting_co_processing_unit/index.html similarity index 100% rename from prerender/browse/applied_energistics_2/crafting_co_processing_unit/index.html rename to static/browse/applied_energistics_2/crafting_co_processing_unit/index.html diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/crafting_monitor.png b/static/browse/applied_energistics_2/crafting_monitor/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/crafting_monitor.png rename to static/browse/applied_energistics_2/crafting_monitor/icon.png diff --git a/prerender/browse/applied_energistics_2/crafting_monitor/index.html b/static/browse/applied_energistics_2/crafting_monitor/index.html similarity index 100% rename from prerender/browse/applied_energistics_2/crafting_monitor/index.html rename to static/browse/applied_energistics_2/crafting_monitor/index.html diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/crafting_unit.png b/static/browse/applied_energistics_2/crafting_unit/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/crafting_unit.png rename to static/browse/applied_energistics_2/crafting_unit/icon.png diff --git a/prerender/browse/applied_energistics_2/crafting_unit/index.html b/static/browse/applied_energistics_2/crafting_unit/index.html similarity index 100% rename from prerender/browse/applied_energistics_2/crafting_unit/index.html rename to static/browse/applied_energistics_2/crafting_unit/index.html diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/crystal_growth_accelerator.png b/static/browse/applied_energistics_2/crystal_growth_accelerator/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/crystal_growth_accelerator.png rename to static/browse/applied_energistics_2/crystal_growth_accelerator/icon.png diff --git a/prerender/browse/applied_energistics_2/crystal_growth_accelerator/index.html b/static/browse/applied_energistics_2/crystal_growth_accelerator/index.html similarity index 100% rename from prerender/browse/applied_energistics_2/crystal_growth_accelerator/index.html rename to static/browse/applied_energistics_2/crystal_growth_accelerator/index.html diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/dark_illuminated_panel.png b/static/browse/applied_energistics_2/dark_illuminated_panel/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/dark_illuminated_panel.png rename to static/browse/applied_energistics_2/dark_illuminated_panel/icon.png diff --git a/prerender/browse/applied_energistics_2/dark_illuminated_panel/index.html b/static/browse/applied_energistics_2/dark_illuminated_panel/index.html similarity index 100% rename from prerender/browse/applied_energistics_2/dark_illuminated_panel/index.html rename to static/browse/applied_energistics_2/dark_illuminated_panel/index.html diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/dense_energy_cell.png b/static/browse/applied_energistics_2/dense_energy_cell/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/dense_energy_cell.png rename to static/browse/applied_energistics_2/dense_energy_cell/icon.png diff --git a/prerender/browse/applied_energistics_2/dense_energy_cell/index.html b/static/browse/applied_energistics_2/dense_energy_cell/index.html similarity index 100% rename from prerender/browse/applied_energistics_2/dense_energy_cell/index.html rename to static/browse/applied_energistics_2/dense_energy_cell/index.html diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/encoded_pattern.png b/static/browse/applied_energistics_2/encoded_pattern/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/encoded_pattern.png rename to static/browse/applied_energistics_2/encoded_pattern/icon.png diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/ender_dust.png b/static/browse/applied_energistics_2/ender_dust/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/ender_dust.png rename to static/browse/applied_energistics_2/ender_dust/icon.png diff --git a/prerender/browse/applied_energistics_2/ender_dust/index.html b/static/browse/applied_energistics_2/ender_dust/index.html similarity index 100% rename from prerender/browse/applied_energistics_2/ender_dust/index.html rename to static/browse/applied_energistics_2/ender_dust/index.html diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/energy_acceptor.png b/static/browse/applied_energistics_2/energy_acceptor/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/energy_acceptor.png rename to static/browse/applied_energistics_2/energy_acceptor/icon.png diff --git a/prerender/browse/applied_energistics_2/energy_acceptor/index.html b/static/browse/applied_energistics_2/energy_acceptor/index.html similarity index 100% rename from prerender/browse/applied_energistics_2/energy_acceptor/index.html rename to static/browse/applied_energistics_2/energy_acceptor/index.html diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/energy_cell.png b/static/browse/applied_energistics_2/energy_cell/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/energy_cell.png rename to static/browse/applied_energistics_2/energy_cell/icon.png diff --git a/prerender/browse/applied_energistics_2/energy_cell/index.html b/static/browse/applied_energistics_2/energy_cell/index.html similarity index 100% rename from prerender/browse/applied_energistics_2/energy_cell/index.html rename to static/browse/applied_energistics_2/energy_cell/index.html diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/engineering_processor.png b/static/browse/applied_energistics_2/engineering_processor/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/engineering_processor.png rename to static/browse/applied_energistics_2/engineering_processor/icon.png diff --git a/prerender/browse/applied_energistics_2/engineering_processor/index.html b/static/browse/applied_energistics_2/engineering_processor/index.html similarity index 100% rename from prerender/browse/applied_energistics_2/engineering_processor/index.html rename to static/browse/applied_energistics_2/engineering_processor/index.html diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/entropy_manipulator.png b/static/browse/applied_energistics_2/entropy_manipulator/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/entropy_manipulator.png rename to static/browse/applied_energistics_2/entropy_manipulator/icon.png diff --git a/prerender/browse/applied_energistics_2/entropy_manipulator/index.html b/static/browse/applied_energistics_2/entropy_manipulator/index.html similarity index 100% rename from prerender/browse/applied_energistics_2/entropy_manipulator/index.html rename to static/browse/applied_energistics_2/entropy_manipulator/index.html diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/flour.png b/static/browse/applied_energistics_2/flour/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/flour.png rename to static/browse/applied_energistics_2/flour/icon.png diff --git a/prerender/browse/applied_energistics_2/flour/index.html b/static/browse/applied_energistics_2/flour/index.html similarity index 100% rename from prerender/browse/applied_energistics_2/flour/index.html rename to static/browse/applied_energistics_2/flour/index.html diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/fluix_block.png b/static/browse/applied_energistics_2/fluix_block/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/fluix_block.png rename to static/browse/applied_energistics_2/fluix_block/icon.png diff --git a/prerender/browse/applied_energistics_2/fluix_block/index.html b/static/browse/applied_energistics_2/fluix_block/index.html similarity index 100% rename from prerender/browse/applied_energistics_2/fluix_block/index.html rename to static/browse/applied_energistics_2/fluix_block/index.html diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/fluix_crystal.png b/static/browse/applied_energistics_2/fluix_crystal/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/fluix_crystal.png rename to static/browse/applied_energistics_2/fluix_crystal/icon.png diff --git a/prerender/browse/applied_energistics_2/fluix_crystal/index.html b/static/browse/applied_energistics_2/fluix_crystal/index.html similarity index 100% rename from prerender/browse/applied_energistics_2/fluix_crystal/index.html rename to static/browse/applied_energistics_2/fluix_crystal/index.html diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/fluix_dust.png b/static/browse/applied_energistics_2/fluix_dust/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/fluix_dust.png rename to static/browse/applied_energistics_2/fluix_dust/icon.png diff --git a/prerender/browse/applied_energistics_2/fluix_dust/index.html b/static/browse/applied_energistics_2/fluix_dust/index.html similarity index 100% rename from prerender/browse/applied_energistics_2/fluix_dust/index.html rename to static/browse/applied_energistics_2/fluix_dust/index.html diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/fluix_pearl.png b/static/browse/applied_energistics_2/fluix_pearl/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/fluix_pearl.png rename to static/browse/applied_energistics_2/fluix_pearl/icon.png diff --git a/prerender/browse/applied_energistics_2/fluix_pearl/index.html b/static/browse/applied_energistics_2/fluix_pearl/index.html similarity index 100% rename from prerender/browse/applied_energistics_2/fluix_pearl/index.html rename to static/browse/applied_energistics_2/fluix_pearl/index.html diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/fluix_seed.png b/static/browse/applied_energistics_2/fluix_seed/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/fluix_seed.png rename to static/browse/applied_energistics_2/fluix_seed/icon.png diff --git a/prerender/browse/applied_energistics_2/fluix_seed/index.html b/static/browse/applied_energistics_2/fluix_seed/index.html similarity index 100% rename from prerender/browse/applied_energistics_2/fluix_seed/index.html rename to static/browse/applied_energistics_2/fluix_seed/index.html diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/formation_core.png b/static/browse/applied_energistics_2/formation_core/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/formation_core.png rename to static/browse/applied_energistics_2/formation_core/icon.png diff --git a/prerender/browse/applied_energistics_2/formation_core/index.html b/static/browse/applied_energistics_2/formation_core/index.html similarity index 100% rename from prerender/browse/applied_energistics_2/formation_core/index.html rename to static/browse/applied_energistics_2/formation_core/index.html diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/fuzzy_card.png b/static/browse/applied_energistics_2/fuzzy_card/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/fuzzy_card.png rename to static/browse/applied_energistics_2/fuzzy_card/icon.png diff --git a/prerender/browse/applied_energistics_2/fuzzy_card/index.html b/static/browse/applied_energistics_2/fuzzy_card/index.html similarity index 100% rename from prerender/browse/applied_energistics_2/fuzzy_card/index.html rename to static/browse/applied_energistics_2/fuzzy_card/index.html diff --git a/src/data/applied_energistics_2/logo.png b/static/browse/applied_energistics_2/icon.png similarity index 100% rename from src/data/applied_energistics_2/logo.png rename to static/browse/applied_energistics_2/icon.png diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/illuminated_panel.png b/static/browse/applied_energistics_2/illuminated_panel/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/illuminated_panel.png rename to static/browse/applied_energistics_2/illuminated_panel/icon.png diff --git a/prerender/browse/applied_energistics_2/illuminated_panel/index.html b/static/browse/applied_energistics_2/illuminated_panel/index.html similarity index 100% rename from prerender/browse/applied_energistics_2/illuminated_panel/index.html rename to static/browse/applied_energistics_2/illuminated_panel/index.html diff --git a/prerender/browse/applied_energistics_2/index.html b/static/browse/applied_energistics_2/index.html similarity index 100% rename from prerender/browse/applied_energistics_2/index.html rename to static/browse/applied_energistics_2/index.html diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/inscriber.png b/static/browse/applied_energistics_2/inscriber/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/inscriber.png rename to static/browse/applied_energistics_2/inscriber/icon.png diff --git a/prerender/browse/applied_energistics_2/inscriber/index.html b/static/browse/applied_energistics_2/inscriber/index.html similarity index 100% rename from prerender/browse/applied_energistics_2/inscriber/index.html rename to static/browse/applied_energistics_2/inscriber/index.html diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/inscriber_calculation_press.png b/static/browse/applied_energistics_2/inscriber_calculation_press/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/inscriber_calculation_press.png rename to static/browse/applied_energistics_2/inscriber_calculation_press/icon.png diff --git a/prerender/browse/applied_energistics_2/inscriber_calculation_press/index.html b/static/browse/applied_energistics_2/inscriber_calculation_press/index.html similarity index 100% rename from prerender/browse/applied_energistics_2/inscriber_calculation_press/index.html rename to static/browse/applied_energistics_2/inscriber_calculation_press/index.html diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/inscriber_engineering_press.png b/static/browse/applied_energistics_2/inscriber_engineering_press/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/inscriber_engineering_press.png rename to static/browse/applied_energistics_2/inscriber_engineering_press/icon.png diff --git a/prerender/browse/applied_energistics_2/inscriber_engineering_press/index.html b/static/browse/applied_energistics_2/inscriber_engineering_press/index.html similarity index 100% rename from prerender/browse/applied_energistics_2/inscriber_engineering_press/index.html rename to static/browse/applied_energistics_2/inscriber_engineering_press/index.html diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/inscriber_logic_press.png b/static/browse/applied_energistics_2/inscriber_logic_press/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/inscriber_logic_press.png rename to static/browse/applied_energistics_2/inscriber_logic_press/icon.png diff --git a/prerender/browse/applied_energistics_2/inscriber_logic_press/index.html b/static/browse/applied_energistics_2/inscriber_logic_press/index.html similarity index 100% rename from prerender/browse/applied_energistics_2/inscriber_logic_press/index.html rename to static/browse/applied_energistics_2/inscriber_logic_press/index.html diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/inscriber_name_press.png b/static/browse/applied_energistics_2/inscriber_name_press/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/inscriber_name_press.png rename to static/browse/applied_energistics_2/inscriber_name_press/icon.png diff --git a/prerender/browse/applied_energistics_2/inscriber_name_press/index.html b/static/browse/applied_energistics_2/inscriber_name_press/index.html similarity index 100% rename from prerender/browse/applied_energistics_2/inscriber_name_press/index.html rename to static/browse/applied_energistics_2/inscriber_name_press/index.html diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/inscriber_silicon_press.png b/static/browse/applied_energistics_2/inscriber_silicon_press/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/inscriber_silicon_press.png rename to static/browse/applied_energistics_2/inscriber_silicon_press/icon.png diff --git a/prerender/browse/applied_energistics_2/inscriber_silicon_press/index.html b/static/browse/applied_energistics_2/inscriber_silicon_press/index.html similarity index 100% rename from prerender/browse/applied_energistics_2/inscriber_silicon_press/index.html rename to static/browse/applied_energistics_2/inscriber_silicon_press/index.html diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/inverter_card.png b/static/browse/applied_energistics_2/inverter_card/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/inverter_card.png rename to static/browse/applied_energistics_2/inverter_card/icon.png diff --git a/prerender/browse/applied_energistics_2/inverter_card/index.html b/static/browse/applied_energistics_2/inverter_card/index.html similarity index 100% rename from prerender/browse/applied_energistics_2/inverter_card/index.html rename to static/browse/applied_energistics_2/inverter_card/index.html diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/iron_nugget.png b/static/browse/applied_energistics_2/iron_nugget/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/iron_nugget.png rename to static/browse/applied_energistics_2/iron_nugget/icon.png diff --git a/prerender/browse/applied_energistics_2/iron_nugget/index.html b/static/browse/applied_energistics_2/iron_nugget/index.html similarity index 100% rename from prerender/browse/applied_energistics_2/iron_nugget/index.html rename to static/browse/applied_energistics_2/iron_nugget/index.html diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/light_detecting_fixture.png b/static/browse/applied_energistics_2/light_detecting_fixture/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/light_detecting_fixture.png rename to static/browse/applied_energistics_2/light_detecting_fixture/icon.png diff --git a/prerender/browse/applied_energistics_2/light_detecting_fixture/index.html b/static/browse/applied_energistics_2/light_detecting_fixture/index.html similarity index 100% rename from prerender/browse/applied_energistics_2/light_detecting_fixture/index.html rename to static/browse/applied_energistics_2/light_detecting_fixture/index.html diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/logic_processor.png b/static/browse/applied_energistics_2/logic_processor/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/logic_processor.png rename to static/browse/applied_energistics_2/logic_processor/icon.png diff --git a/prerender/browse/applied_energistics_2/logic_processor/index.html b/static/browse/applied_energistics_2/logic_processor/index.html similarity index 100% rename from prerender/browse/applied_energistics_2/logic_processor/index.html rename to static/browse/applied_energistics_2/logic_processor/index.html diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/matter_ball.png b/static/browse/applied_energistics_2/matter_ball/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/matter_ball.png rename to static/browse/applied_energistics_2/matter_ball/icon.png diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/matter_cannon.png b/static/browse/applied_energistics_2/matter_cannon/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/matter_cannon.png rename to static/browse/applied_energistics_2/matter_cannon/icon.png diff --git a/prerender/browse/applied_energistics_2/matter_cannon/index.html b/static/browse/applied_energistics_2/matter_cannon/index.html similarity index 100% rename from prerender/browse/applied_energistics_2/matter_cannon/index.html rename to static/browse/applied_energistics_2/matter_cannon/index.html diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/matter_condenser.png b/static/browse/applied_energistics_2/matter_condenser/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/matter_condenser.png rename to static/browse/applied_energistics_2/matter_condenser/icon.png diff --git a/prerender/browse/applied_energistics_2/matter_condenser/index.html b/static/browse/applied_energistics_2/matter_condenser/index.html similarity index 100% rename from prerender/browse/applied_energistics_2/matter_condenser/index.html rename to static/browse/applied_energistics_2/matter_condenser/index.html diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/me_annihilation_plane.png b/static/browse/applied_energistics_2/me_annihilation_plane/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/me_annihilation_plane.png rename to static/browse/applied_energistics_2/me_annihilation_plane/icon.png diff --git a/prerender/browse/applied_energistics_2/me_annihilation_plane/index.html b/static/browse/applied_energistics_2/me_annihilation_plane/index.html similarity index 100% rename from prerender/browse/applied_energistics_2/me_annihilation_plane/index.html rename to static/browse/applied_energistics_2/me_annihilation_plane/index.html diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/me_chest.png b/static/browse/applied_energistics_2/me_chest/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/me_chest.png rename to static/browse/applied_energistics_2/me_chest/icon.png diff --git a/prerender/browse/applied_energistics_2/me_chest/index.html b/static/browse/applied_energistics_2/me_chest/index.html similarity index 100% rename from prerender/browse/applied_energistics_2/me_chest/index.html rename to static/browse/applied_energistics_2/me_chest/index.html diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/me_controller.png b/static/browse/applied_energistics_2/me_controller/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/me_controller.png rename to static/browse/applied_energistics_2/me_controller/icon.png diff --git a/prerender/browse/applied_energistics_2/me_controller/index.html b/static/browse/applied_energistics_2/me_controller/index.html similarity index 100% rename from prerender/browse/applied_energistics_2/me_controller/index.html rename to static/browse/applied_energistics_2/me_controller/index.html diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/me_conversion_monitor.png b/static/browse/applied_energistics_2/me_conversion_monitor/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/me_conversion_monitor.png rename to static/browse/applied_energistics_2/me_conversion_monitor/icon.png diff --git a/prerender/browse/applied_energistics_2/me_conversion_monitor/index.html b/static/browse/applied_energistics_2/me_conversion_monitor/index.html similarity index 100% rename from prerender/browse/applied_energistics_2/me_conversion_monitor/index.html rename to static/browse/applied_energistics_2/me_conversion_monitor/index.html diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/me_covered_cable.png b/static/browse/applied_energistics_2/me_covered_cable/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/me_covered_cable.png rename to static/browse/applied_energistics_2/me_covered_cable/icon.png diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/me_covered_cable_fluix.png b/static/browse/applied_energistics_2/me_covered_cable_fluix/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/me_covered_cable_fluix.png rename to static/browse/applied_energistics_2/me_covered_cable_fluix/icon.png diff --git a/prerender/browse/applied_energistics_2/me_covered_cable_fluix/index.html b/static/browse/applied_energistics_2/me_covered_cable_fluix/index.html similarity index 100% rename from prerender/browse/applied_energistics_2/me_covered_cable_fluix/index.html rename to static/browse/applied_energistics_2/me_covered_cable_fluix/index.html diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/me_crafting_terminal.png b/static/browse/applied_energistics_2/me_crafting_terminal/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/me_crafting_terminal.png rename to static/browse/applied_energistics_2/me_crafting_terminal/icon.png diff --git a/prerender/browse/applied_energistics_2/me_crafting_terminal/index.html b/static/browse/applied_energistics_2/me_crafting_terminal/index.html similarity index 100% rename from prerender/browse/applied_energistics_2/me_crafting_terminal/index.html rename to static/browse/applied_energistics_2/me_crafting_terminal/index.html diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/me_dense_cable.png b/static/browse/applied_energistics_2/me_dense_cable/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/me_dense_cable.png rename to static/browse/applied_energistics_2/me_dense_cable/icon.png diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/me_dense_cable_fluix.png b/static/browse/applied_energistics_2/me_dense_cable_fluix/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/me_dense_cable_fluix.png rename to static/browse/applied_energistics_2/me_dense_cable_fluix/icon.png diff --git a/prerender/browse/applied_energistics_2/me_dense_cable_fluix/index.html b/static/browse/applied_energistics_2/me_dense_cable_fluix/index.html similarity index 100% rename from prerender/browse/applied_energistics_2/me_dense_cable_fluix/index.html rename to static/browse/applied_energistics_2/me_dense_cable_fluix/index.html diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/me_drive.png b/static/browse/applied_energistics_2/me_drive/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/me_drive.png rename to static/browse/applied_energistics_2/me_drive/icon.png diff --git a/prerender/browse/applied_energistics_2/me_drive/index.html b/static/browse/applied_energistics_2/me_drive/index.html similarity index 100% rename from prerender/browse/applied_energistics_2/me_drive/index.html rename to static/browse/applied_energistics_2/me_drive/index.html diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/me_export_bus.png b/static/browse/applied_energistics_2/me_export_bus/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/me_export_bus.png rename to static/browse/applied_energistics_2/me_export_bus/icon.png diff --git a/prerender/browse/applied_energistics_2/me_export_bus/index.html b/static/browse/applied_energistics_2/me_export_bus/index.html similarity index 100% rename from prerender/browse/applied_energistics_2/me_export_bus/index.html rename to static/browse/applied_energistics_2/me_export_bus/index.html diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/me_formation_plane.png b/static/browse/applied_energistics_2/me_formation_plane/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/me_formation_plane.png rename to static/browse/applied_energistics_2/me_formation_plane/icon.png diff --git a/prerender/browse/applied_energistics_2/me_formation_plane/index.html b/static/browse/applied_energistics_2/me_formation_plane/index.html similarity index 100% rename from prerender/browse/applied_energistics_2/me_formation_plane/index.html rename to static/browse/applied_energistics_2/me_formation_plane/index.html diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/me_glass_cable.png b/static/browse/applied_energistics_2/me_glass_cable/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/me_glass_cable.png rename to static/browse/applied_energistics_2/me_glass_cable/icon.png diff --git a/prerender/browse/applied_energistics_2/me_glass_cable/index.html b/static/browse/applied_energistics_2/me_glass_cable/index.html similarity index 100% rename from prerender/browse/applied_energistics_2/me_glass_cable/index.html rename to static/browse/applied_energistics_2/me_glass_cable/index.html diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/me_import_bus.png b/static/browse/applied_energistics_2/me_import_bus/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/me_import_bus.png rename to static/browse/applied_energistics_2/me_import_bus/icon.png diff --git a/prerender/browse/applied_energistics_2/me_import_bus/index.html b/static/browse/applied_energistics_2/me_import_bus/index.html similarity index 100% rename from prerender/browse/applied_energistics_2/me_import_bus/index.html rename to static/browse/applied_energistics_2/me_import_bus/index.html diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/me_interface.png b/static/browse/applied_energistics_2/me_interface/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/me_interface.png rename to static/browse/applied_energistics_2/me_interface/icon.png diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/me_interface_block.png b/static/browse/applied_energistics_2/me_interface_block/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/me_interface_block.png rename to static/browse/applied_energistics_2/me_interface_block/icon.png diff --git a/prerender/browse/applied_energistics_2/me_interface_block/index.html b/static/browse/applied_energistics_2/me_interface_block/index.html similarity index 100% rename from prerender/browse/applied_energistics_2/me_interface_block/index.html rename to static/browse/applied_energistics_2/me_interface_block/index.html diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/me_interface_panel.png b/static/browse/applied_energistics_2/me_interface_panel/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/me_interface_panel.png rename to static/browse/applied_energistics_2/me_interface_panel/icon.png diff --git a/prerender/browse/applied_energistics_2/me_interface_panel/index.html b/static/browse/applied_energistics_2/me_interface_panel/index.html similarity index 100% rename from prerender/browse/applied_energistics_2/me_interface_panel/index.html rename to static/browse/applied_energistics_2/me_interface_panel/index.html diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/me_interface_terminal.png b/static/browse/applied_energistics_2/me_interface_terminal/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/me_interface_terminal.png rename to static/browse/applied_energistics_2/me_interface_terminal/icon.png diff --git a/prerender/browse/applied_energistics_2/me_interface_terminal/index.html b/static/browse/applied_energistics_2/me_interface_terminal/index.html similarity index 100% rename from prerender/browse/applied_energistics_2/me_interface_terminal/index.html rename to static/browse/applied_energistics_2/me_interface_terminal/index.html diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/me_inverted_toggle_bus.png b/static/browse/applied_energistics_2/me_inverted_toggle_bus/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/me_inverted_toggle_bus.png rename to static/browse/applied_energistics_2/me_inverted_toggle_bus/icon.png diff --git a/prerender/browse/applied_energistics_2/me_inverted_toggle_bus/index.html b/static/browse/applied_energistics_2/me_inverted_toggle_bus/index.html similarity index 100% rename from prerender/browse/applied_energistics_2/me_inverted_toggle_bus/index.html rename to static/browse/applied_energistics_2/me_inverted_toggle_bus/index.html diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/me_io_port.png b/static/browse/applied_energistics_2/me_io_port/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/me_io_port.png rename to static/browse/applied_energistics_2/me_io_port/icon.png diff --git a/prerender/browse/applied_energistics_2/me_io_port/index.html b/static/browse/applied_energistics_2/me_io_port/index.html similarity index 100% rename from prerender/browse/applied_energistics_2/me_io_port/index.html rename to static/browse/applied_energistics_2/me_io_port/index.html diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/me_level_emitter.png b/static/browse/applied_energistics_2/me_level_emitter/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/me_level_emitter.png rename to static/browse/applied_energistics_2/me_level_emitter/icon.png diff --git a/prerender/browse/applied_energistics_2/me_level_emitter/index.html b/static/browse/applied_energistics_2/me_level_emitter/index.html similarity index 100% rename from prerender/browse/applied_energistics_2/me_level_emitter/index.html rename to static/browse/applied_energistics_2/me_level_emitter/index.html diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/me_pattern_terminal.png b/static/browse/applied_energistics_2/me_pattern_terminal/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/me_pattern_terminal.png rename to static/browse/applied_energistics_2/me_pattern_terminal/icon.png diff --git a/prerender/browse/applied_energistics_2/me_pattern_terminal/index.html b/static/browse/applied_energistics_2/me_pattern_terminal/index.html similarity index 100% rename from prerender/browse/applied_energistics_2/me_pattern_terminal/index.html rename to static/browse/applied_energistics_2/me_pattern_terminal/index.html diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/me_quantum_link_chamber.png b/static/browse/applied_energistics_2/me_quantum_link_chamber/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/me_quantum_link_chamber.png rename to static/browse/applied_energistics_2/me_quantum_link_chamber/icon.png diff --git a/prerender/browse/applied_energistics_2/me_quantum_link_chamber/index.html b/static/browse/applied_energistics_2/me_quantum_link_chamber/index.html similarity index 100% rename from prerender/browse/applied_energistics_2/me_quantum_link_chamber/index.html rename to static/browse/applied_energistics_2/me_quantum_link_chamber/index.html diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/me_quantum_ring.png b/static/browse/applied_energistics_2/me_quantum_ring/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/me_quantum_ring.png rename to static/browse/applied_energistics_2/me_quantum_ring/icon.png diff --git a/prerender/browse/applied_energistics_2/me_quantum_ring/index.html b/static/browse/applied_energistics_2/me_quantum_ring/index.html similarity index 100% rename from prerender/browse/applied_energistics_2/me_quantum_ring/index.html rename to static/browse/applied_energistics_2/me_quantum_ring/index.html diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/me_security_terminal.png b/static/browse/applied_energistics_2/me_security_terminal/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/me_security_terminal.png rename to static/browse/applied_energistics_2/me_security_terminal/icon.png diff --git a/prerender/browse/applied_energistics_2/me_security_terminal/index.html b/static/browse/applied_energistics_2/me_security_terminal/index.html similarity index 100% rename from prerender/browse/applied_energistics_2/me_security_terminal/index.html rename to static/browse/applied_energistics_2/me_security_terminal/index.html diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/me_smart_cable.png b/static/browse/applied_energistics_2/me_smart_cable/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/me_smart_cable.png rename to static/browse/applied_energistics_2/me_smart_cable/icon.png diff --git a/prerender/browse/applied_energistics_2/me_smart_cable/index.html b/static/browse/applied_energistics_2/me_smart_cable/index.html similarity index 100% rename from prerender/browse/applied_energistics_2/me_smart_cable/index.html rename to static/browse/applied_energistics_2/me_smart_cable/index.html diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/me_storage_bus.png b/static/browse/applied_energistics_2/me_storage_bus/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/me_storage_bus.png rename to static/browse/applied_energistics_2/me_storage_bus/icon.png diff --git a/prerender/browse/applied_energistics_2/me_storage_bus/index.html b/static/browse/applied_energistics_2/me_storage_bus/index.html similarity index 100% rename from prerender/browse/applied_energistics_2/me_storage_bus/index.html rename to static/browse/applied_energistics_2/me_storage_bus/index.html diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/me_storage_housing.png b/static/browse/applied_energistics_2/me_storage_housing/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/me_storage_housing.png rename to static/browse/applied_energistics_2/me_storage_housing/icon.png diff --git a/prerender/browse/applied_energistics_2/me_storage_housing/index.html b/static/browse/applied_energistics_2/me_storage_housing/index.html similarity index 100% rename from prerender/browse/applied_energistics_2/me_storage_housing/index.html rename to static/browse/applied_energistics_2/me_storage_housing/index.html diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/me_storage_monitor.png b/static/browse/applied_energistics_2/me_storage_monitor/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/me_storage_monitor.png rename to static/browse/applied_energistics_2/me_storage_monitor/icon.png diff --git a/prerender/browse/applied_energistics_2/me_storage_monitor/index.html b/static/browse/applied_energistics_2/me_storage_monitor/index.html similarity index 100% rename from prerender/browse/applied_energistics_2/me_storage_monitor/index.html rename to static/browse/applied_energistics_2/me_storage_monitor/index.html diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/me_terminal.png b/static/browse/applied_energistics_2/me_terminal/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/me_terminal.png rename to static/browse/applied_energistics_2/me_terminal/icon.png diff --git a/prerender/browse/applied_energistics_2/me_terminal/index.html b/static/browse/applied_energistics_2/me_terminal/index.html similarity index 100% rename from prerender/browse/applied_energistics_2/me_terminal/index.html rename to static/browse/applied_energistics_2/me_terminal/index.html diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/me_toggle_bus.png b/static/browse/applied_energistics_2/me_toggle_bus/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/me_toggle_bus.png rename to static/browse/applied_energistics_2/me_toggle_bus/icon.png diff --git a/prerender/browse/applied_energistics_2/me_toggle_bus/index.html b/static/browse/applied_energistics_2/me_toggle_bus/index.html similarity index 100% rename from prerender/browse/applied_energistics_2/me_toggle_bus/index.html rename to static/browse/applied_energistics_2/me_toggle_bus/index.html diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/me_wireless_access_point.png b/static/browse/applied_energistics_2/me_wireless_access_point/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/me_wireless_access_point.png rename to static/browse/applied_energistics_2/me_wireless_access_point/icon.png diff --git a/prerender/browse/applied_energistics_2/me_wireless_access_point/index.html b/static/browse/applied_energistics_2/me_wireless_access_point/index.html similarity index 100% rename from prerender/browse/applied_energistics_2/me_wireless_access_point/index.html rename to static/browse/applied_energistics_2/me_wireless_access_point/index.html diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/memory_card.png b/static/browse/applied_energistics_2/memory_card/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/memory_card.png rename to static/browse/applied_energistics_2/memory_card/icon.png diff --git a/prerender/browse/applied_energistics_2/memory_card/index.html b/static/browse/applied_energistics_2/memory_card/index.html similarity index 100% rename from prerender/browse/applied_energistics_2/memory_card/index.html rename to static/browse/applied_energistics_2/memory_card/index.html diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/meteorite_compass.png b/static/browse/applied_energistics_2/meteorite_compass/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/meteorite_compass.png rename to static/browse/applied_energistics_2/meteorite_compass/icon.png diff --git a/prerender/browse/applied_energistics_2/meteorite_compass/index.html b/static/browse/applied_energistics_2/meteorite_compass/index.html similarity index 100% rename from prerender/browse/applied_energistics_2/meteorite_compass/index.html rename to static/browse/applied_energistics_2/meteorite_compass/index.html diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/molecular_assembler.png b/static/browse/applied_energistics_2/molecular_assembler/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/molecular_assembler.png rename to static/browse/applied_energistics_2/molecular_assembler/icon.png diff --git a/prerender/browse/applied_energistics_2/molecular_assembler/index.html b/static/browse/applied_energistics_2/molecular_assembler/index.html similarity index 100% rename from prerender/browse/applied_energistics_2/molecular_assembler/index.html rename to static/browse/applied_energistics_2/molecular_assembler/index.html diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/nether_quartz_axe.png b/static/browse/applied_energistics_2/nether_quartz_axe/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/nether_quartz_axe.png rename to static/browse/applied_energistics_2/nether_quartz_axe/icon.png diff --git a/prerender/browse/applied_energistics_2/nether_quartz_axe/index.html b/static/browse/applied_energistics_2/nether_quartz_axe/index.html similarity index 100% rename from prerender/browse/applied_energistics_2/nether_quartz_axe/index.html rename to static/browse/applied_energistics_2/nether_quartz_axe/index.html diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/nether_quartz_cutting_knife.png b/static/browse/applied_energistics_2/nether_quartz_cutting_knife/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/nether_quartz_cutting_knife.png rename to static/browse/applied_energistics_2/nether_quartz_cutting_knife/icon.png diff --git a/prerender/browse/applied_energistics_2/nether_quartz_cutting_knife/index.html b/static/browse/applied_energistics_2/nether_quartz_cutting_knife/index.html similarity index 100% rename from prerender/browse/applied_energistics_2/nether_quartz_cutting_knife/index.html rename to static/browse/applied_energistics_2/nether_quartz_cutting_knife/index.html diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/nether_quartz_dust.png b/static/browse/applied_energistics_2/nether_quartz_dust/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/nether_quartz_dust.png rename to static/browse/applied_energistics_2/nether_quartz_dust/icon.png diff --git a/prerender/browse/applied_energistics_2/nether_quartz_dust/index.html b/static/browse/applied_energistics_2/nether_quartz_dust/index.html similarity index 100% rename from prerender/browse/applied_energistics_2/nether_quartz_dust/index.html rename to static/browse/applied_energistics_2/nether_quartz_dust/index.html diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/nether_quartz_hoe.png b/static/browse/applied_energistics_2/nether_quartz_hoe/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/nether_quartz_hoe.png rename to static/browse/applied_energistics_2/nether_quartz_hoe/icon.png diff --git a/prerender/browse/applied_energistics_2/nether_quartz_hoe/index.html b/static/browse/applied_energistics_2/nether_quartz_hoe/index.html similarity index 100% rename from prerender/browse/applied_energistics_2/nether_quartz_hoe/index.html rename to static/browse/applied_energistics_2/nether_quartz_hoe/index.html diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/nether_quartz_pickaxe.png b/static/browse/applied_energistics_2/nether_quartz_pickaxe/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/nether_quartz_pickaxe.png rename to static/browse/applied_energistics_2/nether_quartz_pickaxe/icon.png diff --git a/prerender/browse/applied_energistics_2/nether_quartz_pickaxe/index.html b/static/browse/applied_energistics_2/nether_quartz_pickaxe/index.html similarity index 100% rename from prerender/browse/applied_energistics_2/nether_quartz_pickaxe/index.html rename to static/browse/applied_energistics_2/nether_quartz_pickaxe/index.html diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/nether_quartz_seed.png b/static/browse/applied_energistics_2/nether_quartz_seed/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/nether_quartz_seed.png rename to static/browse/applied_energistics_2/nether_quartz_seed/icon.png diff --git a/prerender/browse/applied_energistics_2/nether_quartz_seed/index.html b/static/browse/applied_energistics_2/nether_quartz_seed/index.html similarity index 100% rename from prerender/browse/applied_energistics_2/nether_quartz_seed/index.html rename to static/browse/applied_energistics_2/nether_quartz_seed/index.html diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/nether_quartz_shovel.png b/static/browse/applied_energistics_2/nether_quartz_shovel/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/nether_quartz_shovel.png rename to static/browse/applied_energistics_2/nether_quartz_shovel/icon.png diff --git a/prerender/browse/applied_energistics_2/nether_quartz_shovel/index.html b/static/browse/applied_energistics_2/nether_quartz_shovel/index.html similarity index 100% rename from prerender/browse/applied_energistics_2/nether_quartz_shovel/index.html rename to static/browse/applied_energistics_2/nether_quartz_shovel/index.html diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/nether_quartz_sword.png b/static/browse/applied_energistics_2/nether_quartz_sword/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/nether_quartz_sword.png rename to static/browse/applied_energistics_2/nether_quartz_sword/icon.png diff --git a/prerender/browse/applied_energistics_2/nether_quartz_sword/index.html b/static/browse/applied_energistics_2/nether_quartz_sword/index.html similarity index 100% rename from prerender/browse/applied_energistics_2/nether_quartz_sword/index.html rename to static/browse/applied_energistics_2/nether_quartz_sword/index.html diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/nether_quartz_wrench.png b/static/browse/applied_energistics_2/nether_quartz_wrench/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/nether_quartz_wrench.png rename to static/browse/applied_energistics_2/nether_quartz_wrench/icon.png diff --git a/prerender/browse/applied_energistics_2/nether_quartz_wrench/index.html b/static/browse/applied_energistics_2/nether_quartz_wrench/index.html similarity index 100% rename from prerender/browse/applied_energistics_2/nether_quartz_wrench/index.html rename to static/browse/applied_energistics_2/nether_quartz_wrench/index.html diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/network_tool.png b/static/browse/applied_energistics_2/network_tool/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/network_tool.png rename to static/browse/applied_energistics_2/network_tool/icon.png diff --git a/prerender/browse/applied_energistics_2/network_tool/index.html b/static/browse/applied_energistics_2/network_tool/index.html similarity index 100% rename from prerender/browse/applied_energistics_2/network_tool/index.html rename to static/browse/applied_energistics_2/network_tool/index.html diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/p2p_tunnel_fluid.png b/static/browse/applied_energistics_2/p2p_tunnel_fluid/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/p2p_tunnel_fluid.png rename to static/browse/applied_energistics_2/p2p_tunnel_fluid/icon.png diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/p2p_tunnel_item.png b/static/browse/applied_energistics_2/p2p_tunnel_item/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/p2p_tunnel_item.png rename to static/browse/applied_energistics_2/p2p_tunnel_item/icon.png diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/p2p_tunnel_light.png b/static/browse/applied_energistics_2/p2p_tunnel_light/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/p2p_tunnel_light.png rename to static/browse/applied_energistics_2/p2p_tunnel_light/icon.png diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/p2p_tunnel_me.png b/static/browse/applied_energistics_2/p2p_tunnel_me/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/p2p_tunnel_me.png rename to static/browse/applied_energistics_2/p2p_tunnel_me/icon.png diff --git a/prerender/browse/applied_energistics_2/p2p_tunnel_me/index.html b/static/browse/applied_energistics_2/p2p_tunnel_me/index.html similarity index 100% rename from prerender/browse/applied_energistics_2/p2p_tunnel_me/index.html rename to static/browse/applied_energistics_2/p2p_tunnel_me/index.html diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/p2p_tunnel_redstone.png b/static/browse/applied_energistics_2/p2p_tunnel_redstone/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/p2p_tunnel_redstone.png rename to static/browse/applied_energistics_2/p2p_tunnel_redstone/icon.png diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/p2p_tunnel_rf.png b/static/browse/applied_energistics_2/p2p_tunnel_rf/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/p2p_tunnel_rf.png rename to static/browse/applied_energistics_2/p2p_tunnel_rf/icon.png diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/paint_ball_lumen_white.png b/static/browse/applied_energistics_2/paint_ball_lumen_white/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/paint_ball_lumen_white.png rename to static/browse/applied_energistics_2/paint_ball_lumen_white/icon.png diff --git a/prerender/browse/applied_energistics_2/paint_ball_lumen_white/index.html b/static/browse/applied_energistics_2/paint_ball_lumen_white/index.html similarity index 100% rename from prerender/browse/applied_energistics_2/paint_ball_lumen_white/index.html rename to static/browse/applied_energistics_2/paint_ball_lumen_white/index.html diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/paint_ball_white.png b/static/browse/applied_energistics_2/paint_ball_white/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/paint_ball_white.png rename to static/browse/applied_energistics_2/paint_ball_white/icon.png diff --git a/prerender/browse/applied_energistics_2/paint_ball_white/index.html b/static/browse/applied_energistics_2/paint_ball_white/index.html similarity index 100% rename from prerender/browse/applied_energistics_2/paint_ball_white/index.html rename to static/browse/applied_energistics_2/paint_ball_white/index.html diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/portable_cell.png b/static/browse/applied_energistics_2/portable_cell/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/portable_cell.png rename to static/browse/applied_energistics_2/portable_cell/icon.png diff --git a/prerender/browse/applied_energistics_2/portable_cell/index.html b/static/browse/applied_energistics_2/portable_cell/index.html similarity index 100% rename from prerender/browse/applied_energistics_2/portable_cell/index.html rename to static/browse/applied_energistics_2/portable_cell/index.html diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/printed_calculation_circuit.png b/static/browse/applied_energistics_2/printed_calculation_circuit/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/printed_calculation_circuit.png rename to static/browse/applied_energistics_2/printed_calculation_circuit/icon.png diff --git a/prerender/browse/applied_energistics_2/printed_calculation_circuit/index.html b/static/browse/applied_energistics_2/printed_calculation_circuit/index.html similarity index 100% rename from prerender/browse/applied_energistics_2/printed_calculation_circuit/index.html rename to static/browse/applied_energistics_2/printed_calculation_circuit/index.html diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/printed_engineering_circuit.png b/static/browse/applied_energistics_2/printed_engineering_circuit/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/printed_engineering_circuit.png rename to static/browse/applied_energistics_2/printed_engineering_circuit/icon.png diff --git a/prerender/browse/applied_energistics_2/printed_engineering_circuit/index.html b/static/browse/applied_energistics_2/printed_engineering_circuit/index.html similarity index 100% rename from prerender/browse/applied_energistics_2/printed_engineering_circuit/index.html rename to static/browse/applied_energistics_2/printed_engineering_circuit/index.html diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/printed_logic_circuit.png b/static/browse/applied_energistics_2/printed_logic_circuit/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/printed_logic_circuit.png rename to static/browse/applied_energistics_2/printed_logic_circuit/icon.png diff --git a/prerender/browse/applied_energistics_2/printed_logic_circuit/index.html b/static/browse/applied_energistics_2/printed_logic_circuit/index.html similarity index 100% rename from prerender/browse/applied_energistics_2/printed_logic_circuit/index.html rename to static/browse/applied_energistics_2/printed_logic_circuit/index.html diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/printed_silicon.png b/static/browse/applied_energistics_2/printed_silicon/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/printed_silicon.png rename to static/browse/applied_energistics_2/printed_silicon/icon.png diff --git a/prerender/browse/applied_energistics_2/printed_silicon/index.html b/static/browse/applied_energistics_2/printed_silicon/index.html similarity index 100% rename from prerender/browse/applied_energistics_2/printed_silicon/index.html rename to static/browse/applied_energistics_2/printed_silicon/index.html diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/pure_certus_quartz_crystal.png b/static/browse/applied_energistics_2/pure_certus_quartz_crystal/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/pure_certus_quartz_crystal.png rename to static/browse/applied_energistics_2/pure_certus_quartz_crystal/icon.png diff --git a/prerender/browse/applied_energistics_2/pure_certus_quartz_crystal/index.html b/static/browse/applied_energistics_2/pure_certus_quartz_crystal/index.html similarity index 100% rename from prerender/browse/applied_energistics_2/pure_certus_quartz_crystal/index.html rename to static/browse/applied_energistics_2/pure_certus_quartz_crystal/index.html diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/pure_fluix_crystal.png b/static/browse/applied_energistics_2/pure_fluix_crystal/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/pure_fluix_crystal.png rename to static/browse/applied_energistics_2/pure_fluix_crystal/icon.png diff --git a/prerender/browse/applied_energistics_2/pure_fluix_crystal/index.html b/static/browse/applied_energistics_2/pure_fluix_crystal/index.html similarity index 100% rename from prerender/browse/applied_energistics_2/pure_fluix_crystal/index.html rename to static/browse/applied_energistics_2/pure_fluix_crystal/index.html diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/pure_nether_quartz_crystal.png b/static/browse/applied_energistics_2/pure_nether_quartz_crystal/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/pure_nether_quartz_crystal.png rename to static/browse/applied_energistics_2/pure_nether_quartz_crystal/icon.png diff --git a/prerender/browse/applied_energistics_2/pure_nether_quartz_crystal/index.html b/static/browse/applied_energistics_2/pure_nether_quartz_crystal/index.html similarity index 100% rename from prerender/browse/applied_energistics_2/pure_nether_quartz_crystal/index.html rename to static/browse/applied_energistics_2/pure_nether_quartz_crystal/index.html diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/quantum_entangled_singularity.png b/static/browse/applied_energistics_2/quantum_entangled_singularity/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/quantum_entangled_singularity.png rename to static/browse/applied_energistics_2/quantum_entangled_singularity/icon.png diff --git a/prerender/browse/applied_energistics_2/quantum_entangled_singularity/index.html b/static/browse/applied_energistics_2/quantum_entangled_singularity/index.html similarity index 100% rename from prerender/browse/applied_energistics_2/quantum_entangled_singularity/index.html rename to static/browse/applied_energistics_2/quantum_entangled_singularity/index.html diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/quartz_fiber.png b/static/browse/applied_energistics_2/quartz_fiber/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/quartz_fiber.png rename to static/browse/applied_energistics_2/quartz_fiber/icon.png diff --git a/prerender/browse/applied_energistics_2/quartz_fiber/index.html b/static/browse/applied_energistics_2/quartz_fiber/index.html similarity index 100% rename from prerender/browse/applied_energistics_2/quartz_fiber/index.html rename to static/browse/applied_energistics_2/quartz_fiber/index.html diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/quartz_glass.png b/static/browse/applied_energistics_2/quartz_glass/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/quartz_glass.png rename to static/browse/applied_energistics_2/quartz_glass/icon.png diff --git a/prerender/browse/applied_energistics_2/quartz_glass/index.html b/static/browse/applied_energistics_2/quartz_glass/index.html similarity index 100% rename from prerender/browse/applied_energistics_2/quartz_glass/index.html rename to static/browse/applied_energistics_2/quartz_glass/index.html diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/quartz_grindstone.png b/static/browse/applied_energistics_2/quartz_grindstone/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/quartz_grindstone.png rename to static/browse/applied_energistics_2/quartz_grindstone/icon.png diff --git a/prerender/browse/applied_energistics_2/quartz_grindstone/index.html b/static/browse/applied_energistics_2/quartz_grindstone/index.html similarity index 100% rename from prerender/browse/applied_energistics_2/quartz_grindstone/index.html rename to static/browse/applied_energistics_2/quartz_grindstone/index.html diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/redstone_card.png b/static/browse/applied_energistics_2/redstone_card/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/redstone_card.png rename to static/browse/applied_energistics_2/redstone_card/icon.png diff --git a/prerender/browse/applied_energistics_2/redstone_card/index.html b/static/browse/applied_energistics_2/redstone_card/index.html similarity index 100% rename from prerender/browse/applied_energistics_2/redstone_card/index.html rename to static/browse/applied_energistics_2/redstone_card/index.html diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/silicon.png b/static/browse/applied_energistics_2/silicon/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/silicon.png rename to static/browse/applied_energistics_2/silicon/icon.png diff --git a/prerender/browse/applied_energistics_2/silicon/index.html b/static/browse/applied_energistics_2/silicon/index.html similarity index 100% rename from prerender/browse/applied_energistics_2/silicon/index.html rename to static/browse/applied_energistics_2/silicon/index.html diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/singularity.png b/static/browse/applied_energistics_2/singularity/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/singularity.png rename to static/browse/applied_energistics_2/singularity/icon.png diff --git a/prerender/browse/applied_energistics_2/singularity/index.html b/static/browse/applied_energistics_2/singularity/index.html similarity index 100% rename from prerender/browse/applied_energistics_2/singularity/index.html rename to static/browse/applied_energistics_2/singularity/index.html diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/sky_stone.png b/static/browse/applied_energistics_2/sky_stone/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/sky_stone.png rename to static/browse/applied_energistics_2/sky_stone/icon.png diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/sky_stone_block.png b/static/browse/applied_energistics_2/sky_stone_block/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/sky_stone_block.png rename to static/browse/applied_energistics_2/sky_stone_block/icon.png diff --git a/prerender/browse/applied_energistics_2/sky_stone_block/index.html b/static/browse/applied_energistics_2/sky_stone_block/index.html similarity index 100% rename from prerender/browse/applied_energistics_2/sky_stone_block/index.html rename to static/browse/applied_energistics_2/sky_stone_block/index.html diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/sky_stone_block_chest.png b/static/browse/applied_energistics_2/sky_stone_block_chest/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/sky_stone_block_chest.png rename to static/browse/applied_energistics_2/sky_stone_block_chest/icon.png diff --git a/prerender/browse/applied_energistics_2/sky_stone_block_chest/index.html b/static/browse/applied_energistics_2/sky_stone_block_chest/index.html similarity index 100% rename from prerender/browse/applied_energistics_2/sky_stone_block_chest/index.html rename to static/browse/applied_energistics_2/sky_stone_block_chest/index.html diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/sky_stone_brick.png b/static/browse/applied_energistics_2/sky_stone_brick/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/sky_stone_brick.png rename to static/browse/applied_energistics_2/sky_stone_brick/icon.png diff --git a/prerender/browse/applied_energistics_2/sky_stone_brick/index.html b/static/browse/applied_energistics_2/sky_stone_brick/index.html similarity index 100% rename from prerender/browse/applied_energistics_2/sky_stone_brick/index.html rename to static/browse/applied_energistics_2/sky_stone_brick/index.html diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/sky_stone_chest.png b/static/browse/applied_energistics_2/sky_stone_chest/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/sky_stone_chest.png rename to static/browse/applied_energistics_2/sky_stone_chest/icon.png diff --git a/prerender/browse/applied_energistics_2/sky_stone_chest/index.html b/static/browse/applied_energistics_2/sky_stone_chest/index.html similarity index 100% rename from prerender/browse/applied_energistics_2/sky_stone_chest/index.html rename to static/browse/applied_energistics_2/sky_stone_chest/index.html diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/sky_stone_dust.png b/static/browse/applied_energistics_2/sky_stone_dust/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/sky_stone_dust.png rename to static/browse/applied_energistics_2/sky_stone_dust/icon.png diff --git a/prerender/browse/applied_energistics_2/sky_stone_dust/index.html b/static/browse/applied_energistics_2/sky_stone_dust/index.html similarity index 100% rename from prerender/browse/applied_energistics_2/sky_stone_dust/index.html rename to static/browse/applied_energistics_2/sky_stone_dust/index.html diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/sky_stone_small_brick.png b/static/browse/applied_energistics_2/sky_stone_small_brick/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/sky_stone_small_brick.png rename to static/browse/applied_energistics_2/sky_stone_small_brick/icon.png diff --git a/prerender/browse/applied_energistics_2/sky_stone_small_brick/index.html b/static/browse/applied_energistics_2/sky_stone_small_brick/index.html similarity index 100% rename from prerender/browse/applied_energistics_2/sky_stone_small_brick/index.html rename to static/browse/applied_energistics_2/sky_stone_small_brick/index.html diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/spatial_io_port.png b/static/browse/applied_energistics_2/spatial_io_port/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/spatial_io_port.png rename to static/browse/applied_energistics_2/spatial_io_port/icon.png diff --git a/prerender/browse/applied_energistics_2/spatial_io_port/index.html b/static/browse/applied_energistics_2/spatial_io_port/index.html similarity index 100% rename from prerender/browse/applied_energistics_2/spatial_io_port/index.html rename to static/browse/applied_energistics_2/spatial_io_port/index.html diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/spatial_pylon.png b/static/browse/applied_energistics_2/spatial_pylon/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/spatial_pylon.png rename to static/browse/applied_energistics_2/spatial_pylon/icon.png diff --git a/prerender/browse/applied_energistics_2/spatial_pylon/index.html b/static/browse/applied_energistics_2/spatial_pylon/index.html similarity index 100% rename from prerender/browse/applied_energistics_2/spatial_pylon/index.html rename to static/browse/applied_energistics_2/spatial_pylon/index.html diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/tiny_tnt.png b/static/browse/applied_energistics_2/tiny_tnt/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/tiny_tnt.png rename to static/browse/applied_energistics_2/tiny_tnt/icon.png diff --git a/prerender/browse/applied_energistics_2/tiny_tnt/index.html b/static/browse/applied_energistics_2/tiny_tnt/index.html similarity index 100% rename from prerender/browse/applied_energistics_2/tiny_tnt/index.html rename to static/browse/applied_energistics_2/tiny_tnt/index.html diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/vibrant_quartz_glass.png b/static/browse/applied_energistics_2/vibrant_quartz_glass/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/vibrant_quartz_glass.png rename to static/browse/applied_energistics_2/vibrant_quartz_glass/icon.png diff --git a/prerender/browse/applied_energistics_2/vibrant_quartz_glass/index.html b/static/browse/applied_energistics_2/vibrant_quartz_glass/index.html similarity index 100% rename from prerender/browse/applied_energistics_2/vibrant_quartz_glass/index.html rename to static/browse/applied_energistics_2/vibrant_quartz_glass/index.html diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/vibration_chamber.png b/static/browse/applied_energistics_2/vibration_chamber/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/vibration_chamber.png rename to static/browse/applied_energistics_2/vibration_chamber/icon.png diff --git a/prerender/browse/applied_energistics_2/vibration_chamber/index.html b/static/browse/applied_energistics_2/vibration_chamber/index.html similarity index 100% rename from prerender/browse/applied_energistics_2/vibration_chamber/index.html rename to static/browse/applied_energistics_2/vibration_chamber/index.html diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/view_cell.png b/static/browse/applied_energistics_2/view_cell/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/view_cell.png rename to static/browse/applied_energistics_2/view_cell/icon.png diff --git a/prerender/browse/applied_energistics_2/view_cell/index.html b/static/browse/applied_energistics_2/view_cell/index.html similarity index 100% rename from prerender/browse/applied_energistics_2/view_cell/index.html rename to static/browse/applied_energistics_2/view_cell/index.html diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/wireless_booster.png b/static/browse/applied_energistics_2/wireless_booster/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/wireless_booster.png rename to static/browse/applied_energistics_2/wireless_booster/icon.png diff --git a/prerender/browse/applied_energistics_2/wireless_booster/index.html b/static/browse/applied_energistics_2/wireless_booster/index.html similarity index 100% rename from prerender/browse/applied_energistics_2/wireless_booster/index.html rename to static/browse/applied_energistics_2/wireless_booster/index.html diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/wireless_receiver.png b/static/browse/applied_energistics_2/wireless_receiver/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/wireless_receiver.png rename to static/browse/applied_energistics_2/wireless_receiver/icon.png diff --git a/prerender/browse/applied_energistics_2/wireless_receiver/index.html b/static/browse/applied_energistics_2/wireless_receiver/index.html similarity index 100% rename from prerender/browse/applied_energistics_2/wireless_receiver/index.html rename to static/browse/applied_energistics_2/wireless_receiver/index.html diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/wireless_terminal.png b/static/browse/applied_energistics_2/wireless_terminal/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/wireless_terminal.png rename to static/browse/applied_energistics_2/wireless_terminal/icon.png diff --git a/prerender/browse/applied_energistics_2/wireless_terminal/index.html b/static/browse/applied_energistics_2/wireless_terminal/index.html similarity index 100% rename from prerender/browse/applied_energistics_2/wireless_terminal/index.html rename to static/browse/applied_energistics_2/wireless_terminal/index.html diff --git a/src/data/applied_energistics_2/rv1-stable-1/images/wooden_crank.png b/static/browse/applied_energistics_2/wooden_crank/icon.png similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/images/wooden_crank.png rename to static/browse/applied_energistics_2/wooden_crank/icon.png diff --git a/prerender/browse/applied_energistics_2/wooden_crank/index.html b/static/browse/applied_energistics_2/wooden_crank/index.html similarity index 100% rename from prerender/browse/applied_energistics_2/wooden_crank/index.html rename to static/browse/applied_energistics_2/wooden_crank/index.html diff --git a/src/data/buildcraft/6.2.6/images/advanced_crafting_table.png b/static/browse/buildcraft/advanced_crafting_table/icon.png similarity index 100% rename from src/data/buildcraft/6.2.6/images/advanced_crafting_table.png rename to static/browse/buildcraft/advanced_crafting_table/icon.png diff --git a/prerender/browse/buildcraft/advanced_crafting_table/index.html b/static/browse/buildcraft/advanced_crafting_table/index.html similarity index 100% rename from prerender/browse/buildcraft/advanced_crafting_table/index.html rename to static/browse/buildcraft/advanced_crafting_table/index.html diff --git a/src/data/buildcraft/6.2.6/images/architect_table.png b/static/browse/buildcraft/architect_table/icon.png similarity index 100% rename from src/data/buildcraft/6.2.6/images/architect_table.png rename to static/browse/buildcraft/architect_table/icon.png diff --git a/prerender/browse/buildcraft/architect_table/index.html b/static/browse/buildcraft/architect_table/index.html similarity index 100% rename from prerender/browse/buildcraft/architect_table/index.html rename to static/browse/buildcraft/architect_table/index.html diff --git a/src/data/buildcraft/6.2.6/images/assembly_table.png b/static/browse/buildcraft/assembly_table/icon.png similarity index 100% rename from src/data/buildcraft/6.2.6/images/assembly_table.png rename to static/browse/buildcraft/assembly_table/icon.png diff --git a/prerender/browse/buildcraft/assembly_table/index.html b/static/browse/buildcraft/assembly_table/index.html similarity index 100% rename from prerender/browse/buildcraft/assembly_table/index.html rename to static/browse/buildcraft/assembly_table/index.html diff --git a/src/data/buildcraft/6.2.6/images/auto_workbench.png b/static/browse/buildcraft/auto_workbench/icon.png similarity index 100% rename from src/data/buildcraft/6.2.6/images/auto_workbench.png rename to static/browse/buildcraft/auto_workbench/icon.png diff --git a/prerender/browse/buildcraft/auto_workbench/index.html b/static/browse/buildcraft/auto_workbench/index.html similarity index 100% rename from prerender/browse/buildcraft/auto_workbench/index.html rename to static/browse/buildcraft/auto_workbench/index.html diff --git a/src/data/buildcraft/6.2.6/images/basic_gate.png b/static/browse/buildcraft/basic_gate/icon.png similarity index 100% rename from src/data/buildcraft/6.2.6/images/basic_gate.png rename to static/browse/buildcraft/basic_gate/icon.png diff --git a/prerender/browse/buildcraft/basic_gate/index.html b/static/browse/buildcraft/basic_gate/index.html similarity index 100% rename from prerender/browse/buildcraft/basic_gate/index.html rename to static/browse/buildcraft/basic_gate/index.html diff --git a/src/data/buildcraft/6.2.6/images/basic_gate_2.png b/static/browse/buildcraft/basic_gate_2/icon.png similarity index 100% rename from src/data/buildcraft/6.2.6/images/basic_gate_2.png rename to static/browse/buildcraft/basic_gate_2/icon.png diff --git a/src/data/buildcraft/6.2.6/images/basic_gate_3.png b/static/browse/buildcraft/basic_gate_3/icon.png similarity index 100% rename from src/data/buildcraft/6.2.6/images/basic_gate_3.png rename to static/browse/buildcraft/basic_gate_3/icon.png diff --git a/src/data/buildcraft/6.2.6/images/basic_gate_4.png b/static/browse/buildcraft/basic_gate_4/icon.png similarity index 100% rename from src/data/buildcraft/6.2.6/images/basic_gate_4.png rename to static/browse/buildcraft/basic_gate_4/icon.png diff --git a/src/data/buildcraft/6.2.6/images/blue_pipe_wire.png b/static/browse/buildcraft/blue_pipe_wire/icon.png similarity index 100% rename from src/data/buildcraft/6.2.6/images/blue_pipe_wire.png rename to static/browse/buildcraft/blue_pipe_wire/icon.png diff --git a/prerender/browse/buildcraft/blue_pipe_wire/index.html b/static/browse/buildcraft/blue_pipe_wire/index.html similarity index 100% rename from prerender/browse/buildcraft/blue_pipe_wire/index.html rename to static/browse/buildcraft/blue_pipe_wire/index.html diff --git a/src/data/buildcraft/6.2.6/images/blueprint.png b/static/browse/buildcraft/blueprint/icon.png similarity index 100% rename from src/data/buildcraft/6.2.6/images/blueprint.png rename to static/browse/buildcraft/blueprint/icon.png diff --git a/prerender/browse/buildcraft/blueprint/index.html b/static/browse/buildcraft/blueprint/index.html similarity index 100% rename from prerender/browse/buildcraft/blueprint/index.html rename to static/browse/buildcraft/blueprint/index.html diff --git a/src/data/buildcraft/6.2.6/images/blueprint_library.png b/static/browse/buildcraft/blueprint_library/icon.png similarity index 100% rename from src/data/buildcraft/6.2.6/images/blueprint_library.png rename to static/browse/buildcraft/blueprint_library/icon.png diff --git a/prerender/browse/buildcraft/blueprint_library/index.html b/static/browse/buildcraft/blueprint_library/index.html similarity index 100% rename from prerender/browse/buildcraft/blueprint_library/index.html rename to static/browse/buildcraft/blueprint_library/index.html diff --git a/src/data/buildcraft/6.2.6/images/builder.png b/static/browse/buildcraft/builder/icon.png similarity index 100% rename from src/data/buildcraft/6.2.6/images/builder.png rename to static/browse/buildcraft/builder/icon.png diff --git a/prerender/browse/buildcraft/builder/index.html b/static/browse/buildcraft/builder/index.html similarity index 100% rename from prerender/browse/buildcraft/builder/index.html rename to static/browse/buildcraft/builder/index.html diff --git a/src/data/buildcraft/6.2.6/images/charging_table.png b/static/browse/buildcraft/charging_table/icon.png similarity index 100% rename from src/data/buildcraft/6.2.6/images/charging_table.png rename to static/browse/buildcraft/charging_table/icon.png diff --git a/prerender/browse/buildcraft/charging_table/index.html b/static/browse/buildcraft/charging_table/index.html similarity index 100% rename from prerender/browse/buildcraft/charging_table/index.html rename to static/browse/buildcraft/charging_table/index.html diff --git a/src/data/buildcraft/6.2.6/images/chute.png b/static/browse/buildcraft/chute/icon.png similarity index 100% rename from src/data/buildcraft/6.2.6/images/chute.png rename to static/browse/buildcraft/chute/icon.png diff --git a/prerender/browse/buildcraft/chute/index.html b/static/browse/buildcraft/chute/index.html similarity index 100% rename from prerender/browse/buildcraft/chute/index.html rename to static/browse/buildcraft/chute/index.html diff --git a/src/data/buildcraft/6.2.6/images/clay_transport_pipe.png b/static/browse/buildcraft/clay_transport_pipe/icon.png similarity index 100% rename from src/data/buildcraft/6.2.6/images/clay_transport_pipe.png rename to static/browse/buildcraft/clay_transport_pipe/icon.png diff --git a/src/data/buildcraft/6.2.6/images/cobblestone_fluid_pipe.png b/static/browse/buildcraft/cobblestone_fluid_pipe/icon.png similarity index 100% rename from src/data/buildcraft/6.2.6/images/cobblestone_fluid_pipe.png rename to static/browse/buildcraft/cobblestone_fluid_pipe/icon.png diff --git a/prerender/browse/buildcraft/cobblestone_fluid_pipe/index.html b/static/browse/buildcraft/cobblestone_fluid_pipe/index.html similarity index 100% rename from prerender/browse/buildcraft/cobblestone_fluid_pipe/index.html rename to static/browse/buildcraft/cobblestone_fluid_pipe/index.html diff --git a/src/data/buildcraft/6.2.6/images/cobblestone_kinesis_pipe.png b/static/browse/buildcraft/cobblestone_kinesis_pipe/icon.png similarity index 100% rename from src/data/buildcraft/6.2.6/images/cobblestone_kinesis_pipe.png rename to static/browse/buildcraft/cobblestone_kinesis_pipe/icon.png diff --git a/prerender/browse/buildcraft/cobblestone_kinesis_pipe/index.html b/static/browse/buildcraft/cobblestone_kinesis_pipe/index.html similarity index 100% rename from prerender/browse/buildcraft/cobblestone_kinesis_pipe/index.html rename to static/browse/buildcraft/cobblestone_kinesis_pipe/index.html diff --git a/src/data/buildcraft/6.2.6/images/cobblestone_structure_pipe.png b/static/browse/buildcraft/cobblestone_structure_pipe/icon.png similarity index 100% rename from src/data/buildcraft/6.2.6/images/cobblestone_structure_pipe.png rename to static/browse/buildcraft/cobblestone_structure_pipe/icon.png diff --git a/prerender/browse/buildcraft/cobblestone_structure_pipe/index.html b/static/browse/buildcraft/cobblestone_structure_pipe/index.html similarity index 100% rename from prerender/browse/buildcraft/cobblestone_structure_pipe/index.html rename to static/browse/buildcraft/cobblestone_structure_pipe/index.html diff --git a/src/data/buildcraft/6.2.6/images/cobblestone_transport_pipe.png b/static/browse/buildcraft/cobblestone_transport_pipe/icon.png similarity index 100% rename from src/data/buildcraft/6.2.6/images/cobblestone_transport_pipe.png rename to static/browse/buildcraft/cobblestone_transport_pipe/icon.png diff --git a/prerender/browse/buildcraft/cobblestone_transport_pipe/index.html b/static/browse/buildcraft/cobblestone_transport_pipe/index.html similarity index 100% rename from prerender/browse/buildcraft/cobblestone_transport_pipe/index.html rename to static/browse/buildcraft/cobblestone_transport_pipe/index.html diff --git a/src/data/buildcraft/6.2.6/images/combustion_engine.png b/static/browse/buildcraft/combustion_engine/icon.png similarity index 100% rename from src/data/buildcraft/6.2.6/images/combustion_engine.png rename to static/browse/buildcraft/combustion_engine/icon.png diff --git a/prerender/browse/buildcraft/combustion_engine/index.html b/static/browse/buildcraft/combustion_engine/index.html similarity index 100% rename from prerender/browse/buildcraft/combustion_engine/index.html rename to static/browse/buildcraft/combustion_engine/index.html diff --git a/src/data/buildcraft/6.2.6/images/construction_mark.png b/static/browse/buildcraft/construction_mark/icon.png similarity index 100% rename from src/data/buildcraft/6.2.6/images/construction_mark.png rename to static/browse/buildcraft/construction_mark/icon.png diff --git a/src/data/buildcraft/6.2.6/images/creative_engine.png b/static/browse/buildcraft/creative_engine/icon.png similarity index 100% rename from src/data/buildcraft/6.2.6/images/creative_engine.png rename to static/browse/buildcraft/creative_engine/icon.png diff --git a/src/data/buildcraft/6.2.6/images/daizuli_transport_pipe.png b/static/browse/buildcraft/daizuli_transport_pipe/icon.png similarity index 100% rename from src/data/buildcraft/6.2.6/images/daizuli_transport_pipe.png rename to static/browse/buildcraft/daizuli_transport_pipe/icon.png diff --git a/prerender/browse/buildcraft/daizuli_transport_pipe/index.html b/static/browse/buildcraft/daizuli_transport_pipe/index.html similarity index 100% rename from prerender/browse/buildcraft/daizuli_transport_pipe/index.html rename to static/browse/buildcraft/daizuli_transport_pipe/index.html diff --git a/src/data/buildcraft/6.2.6/images/diamond_and_gate.png b/static/browse/buildcraft/diamond_and_gate/icon.png similarity index 100% rename from src/data/buildcraft/6.2.6/images/diamond_and_gate.png rename to static/browse/buildcraft/diamond_and_gate/icon.png diff --git a/prerender/browse/buildcraft/diamond_and_gate/index.html b/static/browse/buildcraft/diamond_and_gate/index.html similarity index 100% rename from prerender/browse/buildcraft/diamond_and_gate/index.html rename to static/browse/buildcraft/diamond_and_gate/index.html diff --git a/src/data/buildcraft/6.2.6/images/diamond_and_gate_2.png b/static/browse/buildcraft/diamond_and_gate_2/icon.png similarity index 100% rename from src/data/buildcraft/6.2.6/images/diamond_and_gate_2.png rename to static/browse/buildcraft/diamond_and_gate_2/icon.png diff --git a/src/data/buildcraft/6.2.6/images/diamond_and_gate_3.png b/static/browse/buildcraft/diamond_and_gate_3/icon.png similarity index 100% rename from src/data/buildcraft/6.2.6/images/diamond_and_gate_3.png rename to static/browse/buildcraft/diamond_and_gate_3/icon.png diff --git a/src/data/buildcraft/6.2.6/images/diamond_and_gate_4.png b/static/browse/buildcraft/diamond_and_gate_4/icon.png similarity index 100% rename from src/data/buildcraft/6.2.6/images/diamond_and_gate_4.png rename to static/browse/buildcraft/diamond_and_gate_4/icon.png diff --git a/src/data/buildcraft/6.2.6/images/diamond_chipset.png b/static/browse/buildcraft/diamond_chipset/icon.png similarity index 100% rename from src/data/buildcraft/6.2.6/images/diamond_chipset.png rename to static/browse/buildcraft/diamond_chipset/icon.png diff --git a/prerender/browse/buildcraft/diamond_chipset/index.html b/static/browse/buildcraft/diamond_chipset/index.html similarity index 100% rename from prerender/browse/buildcraft/diamond_chipset/index.html rename to static/browse/buildcraft/diamond_chipset/index.html diff --git a/src/data/buildcraft/6.2.6/images/diamond_fluid_pipe.png b/static/browse/buildcraft/diamond_fluid_pipe/icon.png similarity index 100% rename from src/data/buildcraft/6.2.6/images/diamond_fluid_pipe.png rename to static/browse/buildcraft/diamond_fluid_pipe/icon.png diff --git a/prerender/browse/buildcraft/diamond_fluid_pipe/index.html b/static/browse/buildcraft/diamond_fluid_pipe/index.html similarity index 100% rename from prerender/browse/buildcraft/diamond_fluid_pipe/index.html rename to static/browse/buildcraft/diamond_fluid_pipe/index.html diff --git a/src/data/buildcraft/6.2.6/images/diamond_gear.png b/static/browse/buildcraft/diamond_gear/icon.png similarity index 100% rename from src/data/buildcraft/6.2.6/images/diamond_gear.png rename to static/browse/buildcraft/diamond_gear/icon.png diff --git a/prerender/browse/buildcraft/diamond_gear/index.html b/static/browse/buildcraft/diamond_gear/index.html similarity index 100% rename from prerender/browse/buildcraft/diamond_gear/index.html rename to static/browse/buildcraft/diamond_gear/index.html diff --git a/src/data/buildcraft/6.2.6/images/diamond_kinesis_pipe.png b/static/browse/buildcraft/diamond_kinesis_pipe/icon.png similarity index 100% rename from src/data/buildcraft/6.2.6/images/diamond_kinesis_pipe.png rename to static/browse/buildcraft/diamond_kinesis_pipe/icon.png diff --git a/prerender/browse/buildcraft/diamond_kinesis_pipe/index.html b/static/browse/buildcraft/diamond_kinesis_pipe/index.html similarity index 100% rename from prerender/browse/buildcraft/diamond_kinesis_pipe/index.html rename to static/browse/buildcraft/diamond_kinesis_pipe/index.html diff --git a/src/data/buildcraft/6.2.6/images/diamond_or_gate.png b/static/browse/buildcraft/diamond_or_gate/icon.png similarity index 100% rename from src/data/buildcraft/6.2.6/images/diamond_or_gate.png rename to static/browse/buildcraft/diamond_or_gate/icon.png diff --git a/prerender/browse/buildcraft/diamond_or_gate/index.html b/static/browse/buildcraft/diamond_or_gate/index.html similarity index 100% rename from prerender/browse/buildcraft/diamond_or_gate/index.html rename to static/browse/buildcraft/diamond_or_gate/index.html diff --git a/src/data/buildcraft/6.2.6/images/diamond_or_gate_2.png b/static/browse/buildcraft/diamond_or_gate_2/icon.png similarity index 100% rename from src/data/buildcraft/6.2.6/images/diamond_or_gate_2.png rename to static/browse/buildcraft/diamond_or_gate_2/icon.png diff --git a/src/data/buildcraft/6.2.6/images/diamond_or_gate_3.png b/static/browse/buildcraft/diamond_or_gate_3/icon.png similarity index 100% rename from src/data/buildcraft/6.2.6/images/diamond_or_gate_3.png rename to static/browse/buildcraft/diamond_or_gate_3/icon.png diff --git a/src/data/buildcraft/6.2.6/images/diamond_or_gate_4.png b/static/browse/buildcraft/diamond_or_gate_4/icon.png similarity index 100% rename from src/data/buildcraft/6.2.6/images/diamond_or_gate_4.png rename to static/browse/buildcraft/diamond_or_gate_4/icon.png diff --git a/src/data/buildcraft/6.2.6/images/diamond_transport_pipe.png b/static/browse/buildcraft/diamond_transport_pipe/icon.png similarity index 100% rename from src/data/buildcraft/6.2.6/images/diamond_transport_pipe.png rename to static/browse/buildcraft/diamond_transport_pipe/icon.png diff --git a/prerender/browse/buildcraft/diamond_transport_pipe/index.html b/static/browse/buildcraft/diamond_transport_pipe/index.html similarity index 100% rename from prerender/browse/buildcraft/diamond_transport_pipe/index.html rename to static/browse/buildcraft/diamond_transport_pipe/index.html diff --git a/src/data/buildcraft/6.2.6/images/docking_station.png b/static/browse/buildcraft/docking_station/icon.png similarity index 100% rename from src/data/buildcraft/6.2.6/images/docking_station.png rename to static/browse/buildcraft/docking_station/icon.png diff --git a/prerender/browse/buildcraft/docking_station/index.html b/static/browse/buildcraft/docking_station/index.html similarity index 100% rename from prerender/browse/buildcraft/docking_station/index.html rename to static/browse/buildcraft/docking_station/index.html diff --git a/src/data/buildcraft/6.2.6/images/emerald_and_gate.png b/static/browse/buildcraft/emerald_and_gate/icon.png similarity index 100% rename from src/data/buildcraft/6.2.6/images/emerald_and_gate.png rename to static/browse/buildcraft/emerald_and_gate/icon.png diff --git a/src/data/buildcraft/6.2.6/images/emerald_and_gate_2.png b/static/browse/buildcraft/emerald_and_gate_2/icon.png similarity index 100% rename from src/data/buildcraft/6.2.6/images/emerald_and_gate_2.png rename to static/browse/buildcraft/emerald_and_gate_2/icon.png diff --git a/src/data/buildcraft/6.2.6/images/emerald_and_gate_3.png b/static/browse/buildcraft/emerald_and_gate_3/icon.png similarity index 100% rename from src/data/buildcraft/6.2.6/images/emerald_and_gate_3.png rename to static/browse/buildcraft/emerald_and_gate_3/icon.png diff --git a/src/data/buildcraft/6.2.6/images/emerald_and_gate_4.png b/static/browse/buildcraft/emerald_and_gate_4/icon.png similarity index 100% rename from src/data/buildcraft/6.2.6/images/emerald_and_gate_4.png rename to static/browse/buildcraft/emerald_and_gate_4/icon.png diff --git a/src/data/buildcraft/6.2.6/images/emerald_chipset.png b/static/browse/buildcraft/emerald_chipset/icon.png similarity index 100% rename from src/data/buildcraft/6.2.6/images/emerald_chipset.png rename to static/browse/buildcraft/emerald_chipset/icon.png diff --git a/prerender/browse/buildcraft/emerald_chipset/index.html b/static/browse/buildcraft/emerald_chipset/index.html similarity index 100% rename from prerender/browse/buildcraft/emerald_chipset/index.html rename to static/browse/buildcraft/emerald_chipset/index.html diff --git a/src/data/buildcraft/6.2.6/images/emerald_fluid_pipe.png b/static/browse/buildcraft/emerald_fluid_pipe/icon.png similarity index 100% rename from src/data/buildcraft/6.2.6/images/emerald_fluid_pipe.png rename to static/browse/buildcraft/emerald_fluid_pipe/icon.png diff --git a/prerender/browse/buildcraft/emerald_fluid_pipe/index.html b/static/browse/buildcraft/emerald_fluid_pipe/index.html similarity index 100% rename from prerender/browse/buildcraft/emerald_fluid_pipe/index.html rename to static/browse/buildcraft/emerald_fluid_pipe/index.html diff --git a/src/data/buildcraft/6.2.6/images/emerald_kinesis_pipe.png b/static/browse/buildcraft/emerald_kinesis_pipe/icon.png similarity index 100% rename from src/data/buildcraft/6.2.6/images/emerald_kinesis_pipe.png rename to static/browse/buildcraft/emerald_kinesis_pipe/icon.png diff --git a/prerender/browse/buildcraft/emerald_kinesis_pipe/index.html b/static/browse/buildcraft/emerald_kinesis_pipe/index.html similarity index 100% rename from prerender/browse/buildcraft/emerald_kinesis_pipe/index.html rename to static/browse/buildcraft/emerald_kinesis_pipe/index.html diff --git a/src/data/buildcraft/6.2.6/images/emerald_or_gate.png b/static/browse/buildcraft/emerald_or_gate/icon.png similarity index 100% rename from src/data/buildcraft/6.2.6/images/emerald_or_gate.png rename to static/browse/buildcraft/emerald_or_gate/icon.png diff --git a/src/data/buildcraft/6.2.6/images/emerald_or_gate_2.png b/static/browse/buildcraft/emerald_or_gate_2/icon.png similarity index 100% rename from src/data/buildcraft/6.2.6/images/emerald_or_gate_2.png rename to static/browse/buildcraft/emerald_or_gate_2/icon.png diff --git a/src/data/buildcraft/6.2.6/images/emerald_or_gate_3.png b/static/browse/buildcraft/emerald_or_gate_3/icon.png similarity index 100% rename from src/data/buildcraft/6.2.6/images/emerald_or_gate_3.png rename to static/browse/buildcraft/emerald_or_gate_3/icon.png diff --git a/src/data/buildcraft/6.2.6/images/emerald_or_gate_4.png b/static/browse/buildcraft/emerald_or_gate_4/icon.png similarity index 100% rename from src/data/buildcraft/6.2.6/images/emerald_or_gate_4.png rename to static/browse/buildcraft/emerald_or_gate_4/icon.png diff --git a/src/data/buildcraft/6.2.6/images/emerald_transport_pipe.png b/static/browse/buildcraft/emerald_transport_pipe/icon.png similarity index 100% rename from src/data/buildcraft/6.2.6/images/emerald_transport_pipe.png rename to static/browse/buildcraft/emerald_transport_pipe/icon.png diff --git a/prerender/browse/buildcraft/emerald_transport_pipe/index.html b/static/browse/buildcraft/emerald_transport_pipe/index.html similarity index 100% rename from prerender/browse/buildcraft/emerald_transport_pipe/index.html rename to static/browse/buildcraft/emerald_transport_pipe/index.html diff --git a/src/data/buildcraft/6.2.6/images/emzuli_transport_pipe.png b/static/browse/buildcraft/emzuli_transport_pipe/icon.png similarity index 100% rename from src/data/buildcraft/6.2.6/images/emzuli_transport_pipe.png rename to static/browse/buildcraft/emzuli_transport_pipe/icon.png diff --git a/prerender/browse/buildcraft/emzuli_transport_pipe/index.html b/static/browse/buildcraft/emzuli_transport_pipe/index.html similarity index 100% rename from prerender/browse/buildcraft/emzuli_transport_pipe/index.html rename to static/browse/buildcraft/emzuli_transport_pipe/index.html diff --git a/src/data/buildcraft/6.2.6/images/facade_stone.png b/static/browse/buildcraft/facade_stone/icon.png similarity index 100% rename from src/data/buildcraft/6.2.6/images/facade_stone.png rename to static/browse/buildcraft/facade_stone/icon.png diff --git a/prerender/browse/buildcraft/facade_stone/index.html b/static/browse/buildcraft/facade_stone/index.html similarity index 100% rename from prerender/browse/buildcraft/facade_stone/index.html rename to static/browse/buildcraft/facade_stone/index.html diff --git a/src/data/buildcraft/6.2.6/images/filler.png b/static/browse/buildcraft/filler/icon.png similarity index 100% rename from src/data/buildcraft/6.2.6/images/filler.png rename to static/browse/buildcraft/filler/icon.png diff --git a/prerender/browse/buildcraft/filler/index.html b/static/browse/buildcraft/filler/index.html similarity index 100% rename from prerender/browse/buildcraft/filler/index.html rename to static/browse/buildcraft/filler/index.html diff --git a/src/data/buildcraft/6.2.6/images/filtered_buffer.png b/static/browse/buildcraft/filtered_buffer/icon.png similarity index 100% rename from src/data/buildcraft/6.2.6/images/filtered_buffer.png rename to static/browse/buildcraft/filtered_buffer/icon.png diff --git a/prerender/browse/buildcraft/filtered_buffer/index.html b/static/browse/buildcraft/filtered_buffer/index.html similarity index 100% rename from prerender/browse/buildcraft/filtered_buffer/index.html rename to static/browse/buildcraft/filtered_buffer/index.html diff --git a/src/data/buildcraft/6.2.6/images/flood_gate.png b/static/browse/buildcraft/flood_gate/icon.png similarity index 100% rename from src/data/buildcraft/6.2.6/images/flood_gate.png rename to static/browse/buildcraft/flood_gate/icon.png diff --git a/prerender/browse/buildcraft/flood_gate/index.html b/static/browse/buildcraft/flood_gate/index.html similarity index 100% rename from prerender/browse/buildcraft/flood_gate/index.html rename to static/browse/buildcraft/flood_gate/index.html diff --git a/src/data/buildcraft/6.2.6/images/frame.png b/static/browse/buildcraft/frame/icon.png similarity index 100% rename from src/data/buildcraft/6.2.6/images/frame.png rename to static/browse/buildcraft/frame/icon.png diff --git a/src/data/buildcraft/6.2.6/images/fuel.png b/static/browse/buildcraft/fuel/icon.png similarity index 100% rename from src/data/buildcraft/6.2.6/images/fuel.png rename to static/browse/buildcraft/fuel/icon.png diff --git a/src/data/buildcraft/6.2.6/images/fuel_bucket.png b/static/browse/buildcraft/fuel_bucket/icon.png similarity index 100% rename from src/data/buildcraft/6.2.6/images/fuel_bucket.png rename to static/browse/buildcraft/fuel_bucket/icon.png diff --git a/src/data/buildcraft/6.2.6/images/gate_copier.png b/static/browse/buildcraft/gate_copier/icon.png similarity index 100% rename from src/data/buildcraft/6.2.6/images/gate_copier.png rename to static/browse/buildcraft/gate_copier/icon.png diff --git a/prerender/browse/buildcraft/gate_copier/index.html b/static/browse/buildcraft/gate_copier/index.html similarity index 100% rename from prerender/browse/buildcraft/gate_copier/index.html rename to static/browse/buildcraft/gate_copier/index.html diff --git a/src/data/buildcraft/6.2.6/images/gold_and_gate.png b/static/browse/buildcraft/gold_and_gate/icon.png similarity index 100% rename from src/data/buildcraft/6.2.6/images/gold_and_gate.png rename to static/browse/buildcraft/gold_and_gate/icon.png diff --git a/prerender/browse/buildcraft/gold_and_gate/index.html b/static/browse/buildcraft/gold_and_gate/index.html similarity index 100% rename from prerender/browse/buildcraft/gold_and_gate/index.html rename to static/browse/buildcraft/gold_and_gate/index.html diff --git a/src/data/buildcraft/6.2.6/images/gold_and_gate_2.png b/static/browse/buildcraft/gold_and_gate_2/icon.png similarity index 100% rename from src/data/buildcraft/6.2.6/images/gold_and_gate_2.png rename to static/browse/buildcraft/gold_and_gate_2/icon.png diff --git a/src/data/buildcraft/6.2.6/images/gold_and_gate_3.png b/static/browse/buildcraft/gold_and_gate_3/icon.png similarity index 100% rename from src/data/buildcraft/6.2.6/images/gold_and_gate_3.png rename to static/browse/buildcraft/gold_and_gate_3/icon.png diff --git a/src/data/buildcraft/6.2.6/images/gold_and_gate_4.png b/static/browse/buildcraft/gold_and_gate_4/icon.png similarity index 100% rename from src/data/buildcraft/6.2.6/images/gold_and_gate_4.png rename to static/browse/buildcraft/gold_and_gate_4/icon.png diff --git a/src/data/buildcraft/6.2.6/images/gold_gear.png b/static/browse/buildcraft/gold_gear/icon.png similarity index 100% rename from src/data/buildcraft/6.2.6/images/gold_gear.png rename to static/browse/buildcraft/gold_gear/icon.png diff --git a/prerender/browse/buildcraft/gold_gear/index.html b/static/browse/buildcraft/gold_gear/index.html similarity index 100% rename from prerender/browse/buildcraft/gold_gear/index.html rename to static/browse/buildcraft/gold_gear/index.html diff --git a/src/data/buildcraft/6.2.6/images/gold_or_gate.png b/static/browse/buildcraft/gold_or_gate/icon.png similarity index 100% rename from src/data/buildcraft/6.2.6/images/gold_or_gate.png rename to static/browse/buildcraft/gold_or_gate/icon.png diff --git a/prerender/browse/buildcraft/gold_or_gate/index.html b/static/browse/buildcraft/gold_or_gate/index.html similarity index 100% rename from prerender/browse/buildcraft/gold_or_gate/index.html rename to static/browse/buildcraft/gold_or_gate/index.html diff --git a/src/data/buildcraft/6.2.6/images/gold_or_gate_2.png b/static/browse/buildcraft/gold_or_gate_2/icon.png similarity index 100% rename from src/data/buildcraft/6.2.6/images/gold_or_gate_2.png rename to static/browse/buildcraft/gold_or_gate_2/icon.png diff --git a/src/data/buildcraft/6.2.6/images/gold_or_gate_3.png b/static/browse/buildcraft/gold_or_gate_3/icon.png similarity index 100% rename from src/data/buildcraft/6.2.6/images/gold_or_gate_3.png rename to static/browse/buildcraft/gold_or_gate_3/icon.png diff --git a/src/data/buildcraft/6.2.6/images/gold_or_gate_4.png b/static/browse/buildcraft/gold_or_gate_4/icon.png similarity index 100% rename from src/data/buildcraft/6.2.6/images/gold_or_gate_4.png rename to static/browse/buildcraft/gold_or_gate_4/icon.png diff --git a/src/data/buildcraft/6.2.6/images/golden_chipset.png b/static/browse/buildcraft/golden_chipset/icon.png similarity index 100% rename from src/data/buildcraft/6.2.6/images/golden_chipset.png rename to static/browse/buildcraft/golden_chipset/icon.png diff --git a/prerender/browse/buildcraft/golden_chipset/index.html b/static/browse/buildcraft/golden_chipset/index.html similarity index 100% rename from prerender/browse/buildcraft/golden_chipset/index.html rename to static/browse/buildcraft/golden_chipset/index.html diff --git a/src/data/buildcraft/6.2.6/images/golden_fluid_pipe.png b/static/browse/buildcraft/golden_fluid_pipe/icon.png similarity index 100% rename from src/data/buildcraft/6.2.6/images/golden_fluid_pipe.png rename to static/browse/buildcraft/golden_fluid_pipe/icon.png diff --git a/prerender/browse/buildcraft/golden_fluid_pipe/index.html b/static/browse/buildcraft/golden_fluid_pipe/index.html similarity index 100% rename from prerender/browse/buildcraft/golden_fluid_pipe/index.html rename to static/browse/buildcraft/golden_fluid_pipe/index.html diff --git a/src/data/buildcraft/6.2.6/images/golden_kinesis_pipe.png b/static/browse/buildcraft/golden_kinesis_pipe/icon.png similarity index 100% rename from src/data/buildcraft/6.2.6/images/golden_kinesis_pipe.png rename to static/browse/buildcraft/golden_kinesis_pipe/icon.png diff --git a/prerender/browse/buildcraft/golden_kinesis_pipe/index.html b/static/browse/buildcraft/golden_kinesis_pipe/index.html similarity index 100% rename from prerender/browse/buildcraft/golden_kinesis_pipe/index.html rename to static/browse/buildcraft/golden_kinesis_pipe/index.html diff --git a/src/data/buildcraft/6.2.6/images/golden_transport_pipe.png b/static/browse/buildcraft/golden_transport_pipe/icon.png similarity index 100% rename from src/data/buildcraft/6.2.6/images/golden_transport_pipe.png rename to static/browse/buildcraft/golden_transport_pipe/icon.png diff --git a/prerender/browse/buildcraft/golden_transport_pipe/index.html b/static/browse/buildcraft/golden_transport_pipe/index.html similarity index 100% rename from prerender/browse/buildcraft/golden_transport_pipe/index.html rename to static/browse/buildcraft/golden_transport_pipe/index.html diff --git a/src/data/buildcraft/6.2.6/images/green_pipe_wire.png b/static/browse/buildcraft/green_pipe_wire/icon.png similarity index 100% rename from src/data/buildcraft/6.2.6/images/green_pipe_wire.png rename to static/browse/buildcraft/green_pipe_wire/icon.png diff --git a/prerender/browse/buildcraft/green_pipe_wire/index.html b/static/browse/buildcraft/green_pipe_wire/index.html similarity index 100% rename from prerender/browse/buildcraft/green_pipe_wire/index.html rename to static/browse/buildcraft/green_pipe_wire/index.html diff --git a/src/data/buildcraft/logo.png b/static/browse/buildcraft/icon.png similarity index 100% rename from src/data/buildcraft/logo.png rename to static/browse/buildcraft/icon.png diff --git a/prerender/browse/buildcraft/index.html b/static/browse/buildcraft/index.html similarity index 100% rename from prerender/browse/buildcraft/index.html rename to static/browse/buildcraft/index.html diff --git a/src/data/buildcraft/6.2.6/images/integration_table.png b/static/browse/buildcraft/integration_table/icon.png similarity index 100% rename from src/data/buildcraft/6.2.6/images/integration_table.png rename to static/browse/buildcraft/integration_table/icon.png diff --git a/prerender/browse/buildcraft/integration_table/index.html b/static/browse/buildcraft/integration_table/index.html similarity index 100% rename from prerender/browse/buildcraft/integration_table/index.html rename to static/browse/buildcraft/integration_table/index.html diff --git a/src/data/buildcraft/6.2.6/images/iron_and_gate.png b/static/browse/buildcraft/iron_and_gate/icon.png similarity index 100% rename from src/data/buildcraft/6.2.6/images/iron_and_gate.png rename to static/browse/buildcraft/iron_and_gate/icon.png diff --git a/prerender/browse/buildcraft/iron_and_gate/index.html b/static/browse/buildcraft/iron_and_gate/index.html similarity index 100% rename from prerender/browse/buildcraft/iron_and_gate/index.html rename to static/browse/buildcraft/iron_and_gate/index.html diff --git a/src/data/buildcraft/6.2.6/images/iron_and_gate_2.png b/static/browse/buildcraft/iron_and_gate_2/icon.png similarity index 100% rename from src/data/buildcraft/6.2.6/images/iron_and_gate_2.png rename to static/browse/buildcraft/iron_and_gate_2/icon.png diff --git a/src/data/buildcraft/6.2.6/images/iron_and_gate_3.png b/static/browse/buildcraft/iron_and_gate_3/icon.png similarity index 100% rename from src/data/buildcraft/6.2.6/images/iron_and_gate_3.png rename to static/browse/buildcraft/iron_and_gate_3/icon.png diff --git a/src/data/buildcraft/6.2.6/images/iron_and_gate_4.png b/static/browse/buildcraft/iron_and_gate_4/icon.png similarity index 100% rename from src/data/buildcraft/6.2.6/images/iron_and_gate_4.png rename to static/browse/buildcraft/iron_and_gate_4/icon.png diff --git a/src/data/buildcraft/6.2.6/images/iron_chipset.png b/static/browse/buildcraft/iron_chipset/icon.png similarity index 100% rename from src/data/buildcraft/6.2.6/images/iron_chipset.png rename to static/browse/buildcraft/iron_chipset/icon.png diff --git a/prerender/browse/buildcraft/iron_chipset/index.html b/static/browse/buildcraft/iron_chipset/index.html similarity index 100% rename from prerender/browse/buildcraft/iron_chipset/index.html rename to static/browse/buildcraft/iron_chipset/index.html diff --git a/src/data/buildcraft/6.2.6/images/iron_fluid_pipe.png b/static/browse/buildcraft/iron_fluid_pipe/icon.png similarity index 100% rename from src/data/buildcraft/6.2.6/images/iron_fluid_pipe.png rename to static/browse/buildcraft/iron_fluid_pipe/icon.png diff --git a/prerender/browse/buildcraft/iron_fluid_pipe/index.html b/static/browse/buildcraft/iron_fluid_pipe/index.html similarity index 100% rename from prerender/browse/buildcraft/iron_fluid_pipe/index.html rename to static/browse/buildcraft/iron_fluid_pipe/index.html diff --git a/src/data/buildcraft/6.2.6/images/iron_gear.png b/static/browse/buildcraft/iron_gear/icon.png similarity index 100% rename from src/data/buildcraft/6.2.6/images/iron_gear.png rename to static/browse/buildcraft/iron_gear/icon.png diff --git a/prerender/browse/buildcraft/iron_gear/index.html b/static/browse/buildcraft/iron_gear/index.html similarity index 100% rename from prerender/browse/buildcraft/iron_gear/index.html rename to static/browse/buildcraft/iron_gear/index.html diff --git a/src/data/buildcraft/6.2.6/images/iron_kinesis_pipe.png b/static/browse/buildcraft/iron_kinesis_pipe/icon.png similarity index 100% rename from src/data/buildcraft/6.2.6/images/iron_kinesis_pipe.png rename to static/browse/buildcraft/iron_kinesis_pipe/icon.png diff --git a/prerender/browse/buildcraft/iron_kinesis_pipe/index.html b/static/browse/buildcraft/iron_kinesis_pipe/index.html similarity index 100% rename from prerender/browse/buildcraft/iron_kinesis_pipe/index.html rename to static/browse/buildcraft/iron_kinesis_pipe/index.html diff --git a/src/data/buildcraft/6.2.6/images/iron_or_gate.png b/static/browse/buildcraft/iron_or_gate/icon.png similarity index 100% rename from src/data/buildcraft/6.2.6/images/iron_or_gate.png rename to static/browse/buildcraft/iron_or_gate/icon.png diff --git a/prerender/browse/buildcraft/iron_or_gate/index.html b/static/browse/buildcraft/iron_or_gate/index.html similarity index 100% rename from prerender/browse/buildcraft/iron_or_gate/index.html rename to static/browse/buildcraft/iron_or_gate/index.html diff --git a/src/data/buildcraft/6.2.6/images/iron_or_gate_2.png b/static/browse/buildcraft/iron_or_gate_2/icon.png similarity index 100% rename from src/data/buildcraft/6.2.6/images/iron_or_gate_2.png rename to static/browse/buildcraft/iron_or_gate_2/icon.png diff --git a/src/data/buildcraft/6.2.6/images/iron_or_gate_3.png b/static/browse/buildcraft/iron_or_gate_3/icon.png similarity index 100% rename from src/data/buildcraft/6.2.6/images/iron_or_gate_3.png rename to static/browse/buildcraft/iron_or_gate_3/icon.png diff --git a/src/data/buildcraft/6.2.6/images/iron_or_gate_4.png b/static/browse/buildcraft/iron_or_gate_4/icon.png similarity index 100% rename from src/data/buildcraft/6.2.6/images/iron_or_gate_4.png rename to static/browse/buildcraft/iron_or_gate_4/icon.png diff --git a/src/data/buildcraft/6.2.6/images/iron_transport_pipe.png b/static/browse/buildcraft/iron_transport_pipe/icon.png similarity index 100% rename from src/data/buildcraft/6.2.6/images/iron_transport_pipe.png rename to static/browse/buildcraft/iron_transport_pipe/icon.png diff --git a/prerender/browse/buildcraft/iron_transport_pipe/index.html b/static/browse/buildcraft/iron_transport_pipe/index.html similarity index 100% rename from prerender/browse/buildcraft/iron_transport_pipe/index.html rename to static/browse/buildcraft/iron_transport_pipe/index.html diff --git a/src/data/buildcraft/6.2.6/images/land_mark.png b/static/browse/buildcraft/land_mark/icon.png similarity index 100% rename from src/data/buildcraft/6.2.6/images/land_mark.png rename to static/browse/buildcraft/land_mark/icon.png diff --git a/prerender/browse/buildcraft/land_mark/index.html b/static/browse/buildcraft/land_mark/index.html similarity index 100% rename from prerender/browse/buildcraft/land_mark/index.html rename to static/browse/buildcraft/land_mark/index.html diff --git a/src/data/buildcraft/6.2.6/images/laser.png b/static/browse/buildcraft/laser/icon.png similarity index 100% rename from src/data/buildcraft/6.2.6/images/laser.png rename to static/browse/buildcraft/laser/icon.png diff --git a/prerender/browse/buildcraft/laser/index.html b/static/browse/buildcraft/laser/index.html similarity index 100% rename from prerender/browse/buildcraft/laser/index.html rename to static/browse/buildcraft/laser/index.html diff --git a/src/data/buildcraft/6.2.6/images/lazuli_transport_pipe.png b/static/browse/buildcraft/lazuli_transport_pipe/icon.png similarity index 100% rename from src/data/buildcraft/6.2.6/images/lazuli_transport_pipe.png rename to static/browse/buildcraft/lazuli_transport_pipe/icon.png diff --git a/prerender/browse/buildcraft/lazuli_transport_pipe/index.html b/static/browse/buildcraft/lazuli_transport_pipe/index.html similarity index 100% rename from prerender/browse/buildcraft/lazuli_transport_pipe/index.html rename to static/browse/buildcraft/lazuli_transport_pipe/index.html diff --git a/src/data/buildcraft/6.2.6/images/list.png b/static/browse/buildcraft/list/icon.png similarity index 100% rename from src/data/buildcraft/6.2.6/images/list.png rename to static/browse/buildcraft/list/icon.png diff --git a/src/data/buildcraft/6.2.6/images/map_location.png b/static/browse/buildcraft/map_location/icon.png similarity index 100% rename from src/data/buildcraft/6.2.6/images/map_location.png rename to static/browse/buildcraft/map_location/icon.png diff --git a/src/data/buildcraft/6.2.6/images/mining_pipe.png b/static/browse/buildcraft/mining_pipe/icon.png similarity index 100% rename from src/data/buildcraft/6.2.6/images/mining_pipe.png rename to static/browse/buildcraft/mining_pipe/icon.png diff --git a/src/data/buildcraft/6.2.6/images/mining_well.png b/static/browse/buildcraft/mining_well/icon.png similarity index 100% rename from src/data/buildcraft/6.2.6/images/mining_well.png rename to static/browse/buildcraft/mining_well/icon.png diff --git a/prerender/browse/buildcraft/mining_well/index.html b/static/browse/buildcraft/mining_well/index.html similarity index 100% rename from prerender/browse/buildcraft/mining_well/index.html rename to static/browse/buildcraft/mining_well/index.html diff --git a/src/data/buildcraft/6.2.6/images/obsidian_transport_pipe.png b/static/browse/buildcraft/obsidian_transport_pipe/icon.png similarity index 100% rename from src/data/buildcraft/6.2.6/images/obsidian_transport_pipe.png rename to static/browse/buildcraft/obsidian_transport_pipe/icon.png diff --git a/prerender/browse/buildcraft/obsidian_transport_pipe/index.html b/static/browse/buildcraft/obsidian_transport_pipe/index.html similarity index 100% rename from prerender/browse/buildcraft/obsidian_transport_pipe/index.html rename to static/browse/buildcraft/obsidian_transport_pipe/index.html diff --git a/src/data/buildcraft/6.2.6/images/oil.png b/static/browse/buildcraft/oil/icon.png similarity index 100% rename from src/data/buildcraft/6.2.6/images/oil.png rename to static/browse/buildcraft/oil/icon.png diff --git a/src/data/buildcraft/6.2.6/images/oil_bucket.png b/static/browse/buildcraft/oil_bucket/icon.png similarity index 100% rename from src/data/buildcraft/6.2.6/images/oil_bucket.png rename to static/browse/buildcraft/oil_bucket/icon.png diff --git a/src/data/buildcraft/6.2.6/images/oil_spring.png b/static/browse/buildcraft/oil_spring/icon.png similarity index 100% rename from src/data/buildcraft/6.2.6/images/oil_spring.png rename to static/browse/buildcraft/oil_spring/icon.png diff --git a/src/data/buildcraft/6.2.6/images/path_mark.png b/static/browse/buildcraft/path_mark/icon.png similarity index 100% rename from src/data/buildcraft/6.2.6/images/path_mark.png rename to static/browse/buildcraft/path_mark/icon.png diff --git a/prerender/browse/buildcraft/path_mark/index.html b/static/browse/buildcraft/path_mark/index.html similarity index 100% rename from prerender/browse/buildcraft/path_mark/index.html rename to static/browse/buildcraft/path_mark/index.html diff --git a/src/data/buildcraft/6.2.6/images/pipe_plug.png b/static/browse/buildcraft/pipe_plug/icon.png similarity index 100% rename from src/data/buildcraft/6.2.6/images/pipe_plug.png rename to static/browse/buildcraft/pipe_plug/icon.png diff --git a/prerender/browse/buildcraft/pipe_plug/index.html b/static/browse/buildcraft/pipe_plug/index.html similarity index 100% rename from prerender/browse/buildcraft/pipe_plug/index.html rename to static/browse/buildcraft/pipe_plug/index.html diff --git a/src/data/buildcraft/6.2.6/images/pipe_sealant.png b/static/browse/buildcraft/pipe_sealant/icon.png similarity index 100% rename from src/data/buildcraft/6.2.6/images/pipe_sealant.png rename to static/browse/buildcraft/pipe_sealant/icon.png diff --git a/prerender/browse/buildcraft/pipe_sealant/index.html b/static/browse/buildcraft/pipe_sealant/index.html similarity index 100% rename from prerender/browse/buildcraft/pipe_sealant/index.html rename to static/browse/buildcraft/pipe_sealant/index.html diff --git a/src/data/buildcraft/6.2.6/images/pulsating_chipset.png b/static/browse/buildcraft/pulsating_chipset/icon.png similarity index 100% rename from src/data/buildcraft/6.2.6/images/pulsating_chipset.png rename to static/browse/buildcraft/pulsating_chipset/icon.png diff --git a/prerender/browse/buildcraft/pulsating_chipset/index.html b/static/browse/buildcraft/pulsating_chipset/index.html similarity index 100% rename from prerender/browse/buildcraft/pulsating_chipset/index.html rename to static/browse/buildcraft/pulsating_chipset/index.html diff --git a/src/data/buildcraft/6.2.6/images/pump.png b/static/browse/buildcraft/pump/icon.png similarity index 100% rename from src/data/buildcraft/6.2.6/images/pump.png rename to static/browse/buildcraft/pump/icon.png diff --git a/prerender/browse/buildcraft/pump/index.html b/static/browse/buildcraft/pump/index.html similarity index 100% rename from prerender/browse/buildcraft/pump/index.html rename to static/browse/buildcraft/pump/index.html diff --git a/src/data/buildcraft/6.2.6/images/quarry.png b/static/browse/buildcraft/quarry/icon.png similarity index 100% rename from src/data/buildcraft/6.2.6/images/quarry.png rename to static/browse/buildcraft/quarry/icon.png diff --git a/prerender/browse/buildcraft/quarry/index.html b/static/browse/buildcraft/quarry/index.html similarity index 100% rename from prerender/browse/buildcraft/quarry/index.html rename to static/browse/buildcraft/quarry/index.html diff --git a/src/data/buildcraft/6.2.6/images/quartz_chipset.png b/static/browse/buildcraft/quartz_chipset/icon.png similarity index 100% rename from src/data/buildcraft/6.2.6/images/quartz_chipset.png rename to static/browse/buildcraft/quartz_chipset/icon.png diff --git a/prerender/browse/buildcraft/quartz_chipset/index.html b/static/browse/buildcraft/quartz_chipset/index.html similarity index 100% rename from prerender/browse/buildcraft/quartz_chipset/index.html rename to static/browse/buildcraft/quartz_chipset/index.html diff --git a/src/data/buildcraft/6.2.6/images/quartz_fluid_pipe.png b/static/browse/buildcraft/quartz_fluid_pipe/icon.png similarity index 100% rename from src/data/buildcraft/6.2.6/images/quartz_fluid_pipe.png rename to static/browse/buildcraft/quartz_fluid_pipe/icon.png diff --git a/src/data/buildcraft/6.2.6/images/quartz_kinesis_pipe.png b/static/browse/buildcraft/quartz_kinesis_pipe/icon.png similarity index 100% rename from src/data/buildcraft/6.2.6/images/quartz_kinesis_pipe.png rename to static/browse/buildcraft/quartz_kinesis_pipe/icon.png diff --git a/prerender/browse/buildcraft/quartz_kinesis_pipe/index.html b/static/browse/buildcraft/quartz_kinesis_pipe/index.html similarity index 100% rename from prerender/browse/buildcraft/quartz_kinesis_pipe/index.html rename to static/browse/buildcraft/quartz_kinesis_pipe/index.html diff --git a/src/data/buildcraft/6.2.6/images/quartz_transport_pipe.png b/static/browse/buildcraft/quartz_transport_pipe/icon.png similarity index 100% rename from src/data/buildcraft/6.2.6/images/quartz_transport_pipe.png rename to static/browse/buildcraft/quartz_transport_pipe/icon.png diff --git a/prerender/browse/buildcraft/quartz_transport_pipe/index.html b/static/browse/buildcraft/quartz_transport_pipe/index.html similarity index 100% rename from prerender/browse/buildcraft/quartz_transport_pipe/index.html rename to static/browse/buildcraft/quartz_transport_pipe/index.html diff --git a/src/data/buildcraft/6.2.6/images/red_pipe_wire.png b/static/browse/buildcraft/red_pipe_wire/icon.png similarity index 100% rename from src/data/buildcraft/6.2.6/images/red_pipe_wire.png rename to static/browse/buildcraft/red_pipe_wire/icon.png diff --git a/prerender/browse/buildcraft/red_pipe_wire/index.html b/static/browse/buildcraft/red_pipe_wire/index.html similarity index 100% rename from prerender/browse/buildcraft/red_pipe_wire/index.html rename to static/browse/buildcraft/red_pipe_wire/index.html diff --git a/src/data/buildcraft/6.2.6/images/redstone_board.png b/static/browse/buildcraft/redstone_board/icon.png similarity index 100% rename from src/data/buildcraft/6.2.6/images/redstone_board.png rename to static/browse/buildcraft/redstone_board/icon.png diff --git a/src/data/buildcraft/6.2.6/images/redstone_chipset.png b/static/browse/buildcraft/redstone_chipset/icon.png similarity index 100% rename from src/data/buildcraft/6.2.6/images/redstone_chipset.png rename to static/browse/buildcraft/redstone_chipset/icon.png diff --git a/prerender/browse/buildcraft/redstone_chipset/index.html b/static/browse/buildcraft/redstone_chipset/index.html similarity index 100% rename from prerender/browse/buildcraft/redstone_chipset/index.html rename to static/browse/buildcraft/redstone_chipset/index.html diff --git a/src/data/buildcraft/6.2.6/images/redstone_comp_chipset.png b/static/browse/buildcraft/redstone_comp_chipset/icon.png similarity index 100% rename from src/data/buildcraft/6.2.6/images/redstone_comp_chipset.png rename to static/browse/buildcraft/redstone_comp_chipset/icon.png diff --git a/prerender/browse/buildcraft/redstone_comp_chipset/index.html b/static/browse/buildcraft/redstone_comp_chipset/index.html similarity index 100% rename from prerender/browse/buildcraft/redstone_comp_chipset/index.html rename to static/browse/buildcraft/redstone_comp_chipset/index.html diff --git a/src/data/buildcraft/6.2.6/images/redstone_crystal.png b/static/browse/buildcraft/redstone_crystal/icon.png similarity index 100% rename from src/data/buildcraft/6.2.6/images/redstone_crystal.png rename to static/browse/buildcraft/redstone_crystal/icon.png diff --git a/src/data/buildcraft/6.2.6/images/redstone_engine.png b/static/browse/buildcraft/redstone_engine/icon.png similarity index 100% rename from src/data/buildcraft/6.2.6/images/redstone_engine.png rename to static/browse/buildcraft/redstone_engine/icon.png diff --git a/prerender/browse/buildcraft/redstone_engine/index.html b/static/browse/buildcraft/redstone_engine/index.html similarity index 100% rename from prerender/browse/buildcraft/redstone_engine/index.html rename to static/browse/buildcraft/redstone_engine/index.html diff --git a/src/data/buildcraft/6.2.6/images/refinery.png b/static/browse/buildcraft/refinery/icon.png similarity index 100% rename from src/data/buildcraft/6.2.6/images/refinery.png rename to static/browse/buildcraft/refinery/icon.png diff --git a/prerender/browse/buildcraft/refinery/index.html b/static/browse/buildcraft/refinery/index.html similarity index 100% rename from prerender/browse/buildcraft/refinery/index.html rename to static/browse/buildcraft/refinery/index.html diff --git a/src/data/buildcraft/6.2.6/images/requester.png b/static/browse/buildcraft/requester/icon.png similarity index 100% rename from src/data/buildcraft/6.2.6/images/requester.png rename to static/browse/buildcraft/requester/icon.png diff --git a/prerender/browse/buildcraft/requester/index.html b/static/browse/buildcraft/requester/index.html similarity index 100% rename from prerender/browse/buildcraft/requester/index.html rename to static/browse/buildcraft/requester/index.html diff --git a/src/data/buildcraft/6.2.6/images/robot.png b/static/browse/buildcraft/robot/icon.png similarity index 100% rename from src/data/buildcraft/6.2.6/images/robot.png rename to static/browse/buildcraft/robot/icon.png diff --git a/src/data/buildcraft/6.2.6/images/sandstone_fluid_pipe.png b/static/browse/buildcraft/sandstone_fluid_pipe/icon.png similarity index 100% rename from src/data/buildcraft/6.2.6/images/sandstone_fluid_pipe.png rename to static/browse/buildcraft/sandstone_fluid_pipe/icon.png diff --git a/prerender/browse/buildcraft/sandstone_fluid_pipe/index.html b/static/browse/buildcraft/sandstone_fluid_pipe/index.html similarity index 100% rename from prerender/browse/buildcraft/sandstone_fluid_pipe/index.html rename to static/browse/buildcraft/sandstone_fluid_pipe/index.html diff --git a/src/data/buildcraft/6.2.6/images/sandstone_kinesis_pipe.png b/static/browse/buildcraft/sandstone_kinesis_pipe/icon.png similarity index 100% rename from src/data/buildcraft/6.2.6/images/sandstone_kinesis_pipe.png rename to static/browse/buildcraft/sandstone_kinesis_pipe/icon.png diff --git a/src/data/buildcraft/6.2.6/images/sandstone_transport_pipe.png b/static/browse/buildcraft/sandstone_transport_pipe/icon.png similarity index 100% rename from src/data/buildcraft/6.2.6/images/sandstone_transport_pipe.png rename to static/browse/buildcraft/sandstone_transport_pipe/icon.png diff --git a/prerender/browse/buildcraft/sandstone_transport_pipe/index.html b/static/browse/buildcraft/sandstone_transport_pipe/index.html similarity index 100% rename from prerender/browse/buildcraft/sandstone_transport_pipe/index.html rename to static/browse/buildcraft/sandstone_transport_pipe/index.html diff --git a/src/data/buildcraft/6.2.6/images/stirling_engine.png b/static/browse/buildcraft/stirling_engine/icon.png similarity index 100% rename from src/data/buildcraft/6.2.6/images/stirling_engine.png rename to static/browse/buildcraft/stirling_engine/icon.png diff --git a/prerender/browse/buildcraft/stirling_engine/index.html b/static/browse/buildcraft/stirling_engine/index.html similarity index 100% rename from prerender/browse/buildcraft/stirling_engine/index.html rename to static/browse/buildcraft/stirling_engine/index.html diff --git a/src/data/buildcraft/6.2.6/images/stone_fluid_pipe.png b/static/browse/buildcraft/stone_fluid_pipe/icon.png similarity index 100% rename from src/data/buildcraft/6.2.6/images/stone_fluid_pipe.png rename to static/browse/buildcraft/stone_fluid_pipe/icon.png diff --git a/prerender/browse/buildcraft/stone_fluid_pipe/index.html b/static/browse/buildcraft/stone_fluid_pipe/index.html similarity index 100% rename from prerender/browse/buildcraft/stone_fluid_pipe/index.html rename to static/browse/buildcraft/stone_fluid_pipe/index.html diff --git a/src/data/buildcraft/6.2.6/images/stone_gear.png b/static/browse/buildcraft/stone_gear/icon.png similarity index 100% rename from src/data/buildcraft/6.2.6/images/stone_gear.png rename to static/browse/buildcraft/stone_gear/icon.png diff --git a/prerender/browse/buildcraft/stone_gear/index.html b/static/browse/buildcraft/stone_gear/index.html similarity index 100% rename from prerender/browse/buildcraft/stone_gear/index.html rename to static/browse/buildcraft/stone_gear/index.html diff --git a/src/data/buildcraft/6.2.6/images/stone_kinesis_pipe.png b/static/browse/buildcraft/stone_kinesis_pipe/icon.png similarity index 100% rename from src/data/buildcraft/6.2.6/images/stone_kinesis_pipe.png rename to static/browse/buildcraft/stone_kinesis_pipe/icon.png diff --git a/prerender/browse/buildcraft/stone_kinesis_pipe/index.html b/static/browse/buildcraft/stone_kinesis_pipe/index.html similarity index 100% rename from prerender/browse/buildcraft/stone_kinesis_pipe/index.html rename to static/browse/buildcraft/stone_kinesis_pipe/index.html diff --git a/src/data/buildcraft/6.2.6/images/stone_transport_pipe.png b/static/browse/buildcraft/stone_transport_pipe/icon.png similarity index 100% rename from src/data/buildcraft/6.2.6/images/stone_transport_pipe.png rename to static/browse/buildcraft/stone_transport_pipe/icon.png diff --git a/prerender/browse/buildcraft/stone_transport_pipe/index.html b/static/browse/buildcraft/stone_transport_pipe/index.html similarity index 100% rename from prerender/browse/buildcraft/stone_transport_pipe/index.html rename to static/browse/buildcraft/stone_transport_pipe/index.html diff --git a/src/data/buildcraft/6.2.6/images/stripes_transport_pipe.png b/static/browse/buildcraft/stripes_transport_pipe/icon.png similarity index 100% rename from src/data/buildcraft/6.2.6/images/stripes_transport_pipe.png rename to static/browse/buildcraft/stripes_transport_pipe/icon.png diff --git a/prerender/browse/buildcraft/stripes_transport_pipe/index.html b/static/browse/buildcraft/stripes_transport_pipe/index.html similarity index 100% rename from prerender/browse/buildcraft/stripes_transport_pipe/index.html rename to static/browse/buildcraft/stripes_transport_pipe/index.html diff --git a/src/data/buildcraft/6.2.6/images/tank.png b/static/browse/buildcraft/tank/icon.png similarity index 100% rename from src/data/buildcraft/6.2.6/images/tank.png rename to static/browse/buildcraft/tank/icon.png diff --git a/prerender/browse/buildcraft/tank/index.html b/static/browse/buildcraft/tank/index.html similarity index 100% rename from prerender/browse/buildcraft/tank/index.html rename to static/browse/buildcraft/tank/index.html diff --git a/src/data/buildcraft/6.2.6/images/template.png b/static/browse/buildcraft/template/icon.png similarity index 100% rename from src/data/buildcraft/6.2.6/images/template.png rename to static/browse/buildcraft/template/icon.png diff --git a/prerender/browse/buildcraft/template/index.html b/static/browse/buildcraft/template/index.html similarity index 100% rename from prerender/browse/buildcraft/template/index.html rename to static/browse/buildcraft/template/index.html diff --git a/src/data/buildcraft/6.2.6/images/void_fluid_pipe.png b/static/browse/buildcraft/void_fluid_pipe/icon.png similarity index 100% rename from src/data/buildcraft/6.2.6/images/void_fluid_pipe.png rename to static/browse/buildcraft/void_fluid_pipe/icon.png diff --git a/prerender/browse/buildcraft/void_fluid_pipe/index.html b/static/browse/buildcraft/void_fluid_pipe/index.html similarity index 100% rename from prerender/browse/buildcraft/void_fluid_pipe/index.html rename to static/browse/buildcraft/void_fluid_pipe/index.html diff --git a/src/data/buildcraft/6.2.6/images/void_transport_pipe.png b/static/browse/buildcraft/void_transport_pipe/icon.png similarity index 100% rename from src/data/buildcraft/6.2.6/images/void_transport_pipe.png rename to static/browse/buildcraft/void_transport_pipe/icon.png diff --git a/prerender/browse/buildcraft/void_transport_pipe/index.html b/static/browse/buildcraft/void_transport_pipe/index.html similarity index 100% rename from prerender/browse/buildcraft/void_transport_pipe/index.html rename to static/browse/buildcraft/void_transport_pipe/index.html diff --git a/src/data/buildcraft/6.2.6/images/water_spring.png b/static/browse/buildcraft/water_spring/icon.png similarity index 100% rename from src/data/buildcraft/6.2.6/images/water_spring.png rename to static/browse/buildcraft/water_spring/icon.png diff --git a/src/data/buildcraft/6.2.6/images/wood_gear.png b/static/browse/buildcraft/wood_gear/icon.png similarity index 100% rename from src/data/buildcraft/6.2.6/images/wood_gear.png rename to static/browse/buildcraft/wood_gear/icon.png diff --git a/prerender/browse/buildcraft/wood_gear/index.html b/static/browse/buildcraft/wood_gear/index.html similarity index 100% rename from prerender/browse/buildcraft/wood_gear/index.html rename to static/browse/buildcraft/wood_gear/index.html diff --git a/src/data/buildcraft/6.2.6/images/wooden_fluid_pipe.png b/static/browse/buildcraft/wooden_fluid_pipe/icon.png similarity index 100% rename from src/data/buildcraft/6.2.6/images/wooden_fluid_pipe.png rename to static/browse/buildcraft/wooden_fluid_pipe/icon.png diff --git a/prerender/browse/buildcraft/wooden_fluid_pipe/index.html b/static/browse/buildcraft/wooden_fluid_pipe/index.html similarity index 100% rename from prerender/browse/buildcraft/wooden_fluid_pipe/index.html rename to static/browse/buildcraft/wooden_fluid_pipe/index.html diff --git a/src/data/buildcraft/6.2.6/images/wooden_kinesis_pipe.png b/static/browse/buildcraft/wooden_kinesis_pipe/icon.png similarity index 100% rename from src/data/buildcraft/6.2.6/images/wooden_kinesis_pipe.png rename to static/browse/buildcraft/wooden_kinesis_pipe/icon.png diff --git a/prerender/browse/buildcraft/wooden_kinesis_pipe/index.html b/static/browse/buildcraft/wooden_kinesis_pipe/index.html similarity index 100% rename from prerender/browse/buildcraft/wooden_kinesis_pipe/index.html rename to static/browse/buildcraft/wooden_kinesis_pipe/index.html diff --git a/src/data/buildcraft/6.2.6/images/wooden_transport_pipe.png b/static/browse/buildcraft/wooden_transport_pipe/icon.png similarity index 100% rename from src/data/buildcraft/6.2.6/images/wooden_transport_pipe.png rename to static/browse/buildcraft/wooden_transport_pipe/icon.png diff --git a/prerender/browse/buildcraft/wooden_transport_pipe/index.html b/static/browse/buildcraft/wooden_transport_pipe/index.html similarity index 100% rename from prerender/browse/buildcraft/wooden_transport_pipe/index.html rename to static/browse/buildcraft/wooden_transport_pipe/index.html diff --git a/src/data/buildcraft/6.2.6/images/wrench.png b/static/browse/buildcraft/wrench/icon.png similarity index 100% rename from src/data/buildcraft/6.2.6/images/wrench.png rename to static/browse/buildcraft/wrench/icon.png diff --git a/prerender/browse/buildcraft/wrench/index.html b/static/browse/buildcraft/wrench/index.html similarity index 100% rename from prerender/browse/buildcraft/wrench/index.html rename to static/browse/buildcraft/wrench/index.html diff --git a/src/data/buildcraft/6.2.6/images/yellow_pipe_wire.png b/static/browse/buildcraft/yellow_pipe_wire/icon.png similarity index 100% rename from src/data/buildcraft/6.2.6/images/yellow_pipe_wire.png rename to static/browse/buildcraft/yellow_pipe_wire/icon.png diff --git a/prerender/browse/buildcraft/yellow_pipe_wire/index.html b/static/browse/buildcraft/yellow_pipe_wire/index.html similarity index 100% rename from prerender/browse/buildcraft/yellow_pipe_wire/index.html rename to static/browse/buildcraft/yellow_pipe_wire/index.html diff --git a/src/data/buildcraft/6.2.6/images/zone_planner.png b/static/browse/buildcraft/zone_planner/icon.png similarity index 100% rename from src/data/buildcraft/6.2.6/images/zone_planner.png rename to static/browse/buildcraft/zone_planner/icon.png diff --git a/prerender/browse/buildcraft/zone_planner/index.html b/static/browse/buildcraft/zone_planner/index.html similarity index 100% rename from prerender/browse/buildcraft/zone_planner/index.html rename to static/browse/buildcraft/zone_planner/index.html diff --git a/src/data/enderio/2.2.7.325/images/advanced_item_filter.png b/static/browse/enderio/advanced_item_filter/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/advanced_item_filter.png rename to static/browse/enderio/advanced_item_filter/icon.png diff --git a/prerender/browse/enderio/advanced_item_filter/index.html b/static/browse/enderio/advanced_item_filter/index.html similarity index 100% rename from prerender/browse/enderio/advanced_item_filter/index.html rename to static/browse/enderio/advanced_item_filter/index.html diff --git a/src/data/enderio/2.2.7.325/images/advanced_photovoltaic_cell.png b/static/browse/enderio/advanced_photovoltaic_cell/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/advanced_photovoltaic_cell.png rename to static/browse/enderio/advanced_photovoltaic_cell/icon.png diff --git a/prerender/browse/enderio/advanced_photovoltaic_cell/index.html b/static/browse/enderio/advanced_photovoltaic_cell/index.html similarity index 100% rename from prerender/browse/enderio/advanced_photovoltaic_cell/index.html rename to static/browse/enderio/advanced_photovoltaic_cell/index.html diff --git a/src/data/enderio/2.2.7.325/images/alloy_smelter.png b/static/browse/enderio/alloy_smelter/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/alloy_smelter.png rename to static/browse/enderio/alloy_smelter/icon.png diff --git a/prerender/browse/enderio/alloy_smelter/index.html b/static/browse/enderio/alloy_smelter/index.html similarity index 100% rename from prerender/browse/enderio/alloy_smelter/index.html rename to static/browse/enderio/alloy_smelter/index.html diff --git a/src/data/enderio/2.2.7.325/images/attractor_obelisk.png b/static/browse/enderio/attractor_obelisk/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/attractor_obelisk.png rename to static/browse/enderio/attractor_obelisk/icon.png diff --git a/prerender/browse/enderio/attractor_obelisk/index.html b/static/browse/enderio/attractor_obelisk/index.html similarity index 100% rename from prerender/browse/enderio/attractor_obelisk/index.html rename to static/browse/enderio/attractor_obelisk/index.html diff --git a/src/data/enderio/2.2.7.325/images/aversion_obelisk.png b/static/browse/enderio/aversion_obelisk/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/aversion_obelisk.png rename to static/browse/enderio/aversion_obelisk/icon.png diff --git a/prerender/browse/enderio/aversion_obelisk/index.html b/static/browse/enderio/aversion_obelisk/index.html similarity index 100% rename from prerender/browse/enderio/aversion_obelisk/index.html rename to static/browse/enderio/aversion_obelisk/index.html diff --git a/src/data/enderio/2.2.7.325/images/basic_capacitor.png b/static/browse/enderio/basic_capacitor/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/basic_capacitor.png rename to static/browse/enderio/basic_capacitor/icon.png diff --git a/prerender/browse/enderio/basic_capacitor/index.html b/static/browse/enderio/basic_capacitor/index.html similarity index 100% rename from prerender/browse/enderio/basic_capacitor/index.html rename to static/browse/enderio/basic_capacitor/index.html diff --git a/src/data/enderio/2.2.7.325/images/basic_capacitor_bank.png b/static/browse/enderio/basic_capacitor_bank/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/basic_capacitor_bank.png rename to static/browse/enderio/basic_capacitor_bank/icon.png diff --git a/prerender/browse/enderio/basic_capacitor_bank/index.html b/static/browse/enderio/basic_capacitor_bank/index.html similarity index 100% rename from prerender/browse/enderio/basic_capacitor_bank/index.html rename to static/browse/enderio/basic_capacitor_bank/index.html diff --git a/src/data/enderio/2.2.7.325/images/basic_capacitor_bank_2.png b/static/browse/enderio/basic_capacitor_bank_2/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/basic_capacitor_bank_2.png rename to static/browse/enderio/basic_capacitor_bank_2/icon.png diff --git a/src/data/enderio/2.2.7.325/images/basic_gear.png b/static/browse/enderio/basic_gear/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/basic_gear.png rename to static/browse/enderio/basic_gear/icon.png diff --git a/prerender/browse/enderio/basic_gear/index.html b/static/browse/enderio/basic_gear/index.html similarity index 100% rename from prerender/browse/enderio/basic_gear/index.html rename to static/browse/enderio/basic_gear/index.html diff --git a/src/data/enderio/2.2.7.325/images/basic_item_filter.png b/static/browse/enderio/basic_item_filter/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/basic_item_filter.png rename to static/browse/enderio/basic_item_filter/icon.png diff --git a/prerender/browse/enderio/basic_item_filter/index.html b/static/browse/enderio/basic_item_filter/index.html similarity index 100% rename from prerender/browse/enderio/basic_item_filter/index.html rename to static/browse/enderio/basic_item_filter/index.html diff --git a/src/data/enderio/2.2.7.325/images/binder_composite.png b/static/browse/enderio/binder_composite/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/binder_composite.png rename to static/browse/enderio/binder_composite/icon.png diff --git a/prerender/browse/enderio/binder_composite/index.html b/static/browse/enderio/binder_composite/index.html similarity index 100% rename from prerender/browse/enderio/binder_composite/index.html rename to static/browse/enderio/binder_composite/index.html diff --git a/src/data/enderio/2.2.7.325/images/broken_spawner.png b/static/browse/enderio/broken_spawner/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/broken_spawner.png rename to static/browse/enderio/broken_spawner/icon.png diff --git a/prerender/browse/enderio/broken_spawner/index.html b/static/browse/enderio/broken_spawner/index.html similarity index 100% rename from prerender/browse/enderio/broken_spawner/index.html rename to static/browse/enderio/broken_spawner/index.html diff --git a/src/data/enderio/2.2.7.325/images/broken_spawner_2.png b/static/browse/enderio/broken_spawner_2/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/broken_spawner_2.png rename to static/browse/enderio/broken_spawner_2/icon.png diff --git a/src/data/enderio/2.2.7.325/images/broken_spawner_3.png b/static/browse/enderio/broken_spawner_3/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/broken_spawner_3.png rename to static/browse/enderio/broken_spawner_3/icon.png diff --git a/src/data/enderio/2.2.7.325/images/broken_spawner_4.png b/static/browse/enderio/broken_spawner_4/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/broken_spawner_4.png rename to static/browse/enderio/broken_spawner_4/icon.png diff --git a/src/data/enderio/2.2.7.325/images/broken_spawner_5.png b/static/browse/enderio/broken_spawner_5/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/broken_spawner_5.png rename to static/browse/enderio/broken_spawner_5/icon.png diff --git a/src/data/enderio/2.2.7.325/images/broken_spawner_6.png b/static/browse/enderio/broken_spawner_6/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/broken_spawner_6.png rename to static/browse/enderio/broken_spawner_6/icon.png diff --git a/src/data/enderio/2.2.7.325/images/broken_spawner_7.png b/static/browse/enderio/broken_spawner_7/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/broken_spawner_7.png rename to static/browse/enderio/broken_spawner_7/icon.png diff --git a/src/data/enderio/2.2.7.325/images/capacitor_bank.png b/static/browse/enderio/capacitor_bank/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/capacitor_bank.png rename to static/browse/enderio/capacitor_bank/icon.png diff --git a/prerender/browse/enderio/capacitor_bank/index.html b/static/browse/enderio/capacitor_bank/index.html similarity index 100% rename from prerender/browse/enderio/capacitor_bank/index.html rename to static/browse/enderio/capacitor_bank/index.html diff --git a/src/data/enderio/2.2.7.325/images/capacitor_bank_2.png b/static/browse/enderio/capacitor_bank_2/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/capacitor_bank_2.png rename to static/browse/enderio/capacitor_bank_2/icon.png diff --git a/src/data/enderio/2.2.7.325/images/capacitor_bank_deprecated.png b/static/browse/enderio/capacitor_bank_deprecated/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/capacitor_bank_deprecated.png rename to static/browse/enderio/capacitor_bank_deprecated/icon.png diff --git a/src/data/enderio/2.2.7.325/images/capacitor_bank_deprecated_2.png b/static/browse/enderio/capacitor_bank_deprecated_2/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/capacitor_bank_deprecated_2.png rename to static/browse/enderio/capacitor_bank_deprecated_2/icon.png diff --git a/src/data/enderio/2.2.7.325/images/chargeable_item_filter.png b/static/browse/enderio/chargeable_item_filter/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/chargeable_item_filter.png rename to static/browse/enderio/chargeable_item_filter/icon.png diff --git a/prerender/browse/enderio/chargeable_item_filter/index.html b/static/browse/enderio/chargeable_item_filter/index.html similarity index 100% rename from prerender/browse/enderio/chargeable_item_filter/index.html rename to static/browse/enderio/chargeable_item_filter/index.html diff --git a/src/data/enderio/2.2.7.325/images/coal_powder.png b/static/browse/enderio/coal_powder/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/coal_powder.png rename to static/browse/enderio/coal_powder/icon.png diff --git a/prerender/browse/enderio/coal_powder/index.html b/static/browse/enderio/coal_powder/index.html similarity index 100% rename from prerender/browse/enderio/coal_powder/index.html rename to static/browse/enderio/coal_powder/index.html diff --git a/src/data/enderio/2.2.7.325/images/combustion_generator.png b/static/browse/enderio/combustion_generator/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/combustion_generator.png rename to static/browse/enderio/combustion_generator/icon.png diff --git a/prerender/browse/enderio/combustion_generator/index.html b/static/browse/enderio/combustion_generator/index.html similarity index 100% rename from prerender/browse/enderio/combustion_generator/index.html rename to static/browse/enderio/combustion_generator/index.html diff --git a/src/data/enderio/2.2.7.325/images/conductive_iron.png b/static/browse/enderio/conductive_iron/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/conductive_iron.png rename to static/browse/enderio/conductive_iron/icon.png diff --git a/prerender/browse/enderio/conductive_iron/index.html b/static/browse/enderio/conductive_iron/index.html similarity index 100% rename from prerender/browse/enderio/conductive_iron/index.html rename to static/browse/enderio/conductive_iron/index.html diff --git a/src/data/enderio/2.2.7.325/images/conductive_iron_block.png b/static/browse/enderio/conductive_iron_block/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/conductive_iron_block.png rename to static/browse/enderio/conductive_iron_block/icon.png diff --git a/prerender/browse/enderio/conductive_iron_block/index.html b/static/browse/enderio/conductive_iron_block/index.html similarity index 100% rename from prerender/browse/enderio/conductive_iron_block/index.html rename to static/browse/enderio/conductive_iron_block/index.html diff --git a/src/data/enderio/2.2.7.325/images/conduit_binder.png b/static/browse/enderio/conduit_binder/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/conduit_binder.png rename to static/browse/enderio/conduit_binder/icon.png diff --git a/prerender/browse/enderio/conduit_binder/index.html b/static/browse/enderio/conduit_binder/index.html similarity index 100% rename from prerender/browse/enderio/conduit_binder/index.html rename to static/browse/enderio/conduit_binder/index.html diff --git a/src/data/enderio/2.2.7.325/images/conduit_connector.png b/static/browse/enderio/conduit_connector/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/conduit_connector.png rename to static/browse/enderio/conduit_connector/icon.png diff --git a/src/data/enderio/2.2.7.325/images/conduit_facade.png b/static/browse/enderio/conduit_facade/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/conduit_facade.png rename to static/browse/enderio/conduit_facade/icon.png diff --git a/prerender/browse/enderio/conduit_facade/index.html b/static/browse/enderio/conduit_facade/index.html similarity index 100% rename from prerender/browse/enderio/conduit_facade/index.html rename to static/browse/enderio/conduit_facade/index.html diff --git a/src/data/enderio/2.2.7.325/images/conduit_probe.png b/static/browse/enderio/conduit_probe/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/conduit_probe.png rename to static/browse/enderio/conduit_probe/icon.png diff --git a/prerender/browse/enderio/conduit_probe/index.html b/static/browse/enderio/conduit_probe/index.html similarity index 100% rename from prerender/browse/enderio/conduit_probe/index.html rename to static/browse/enderio/conduit_probe/index.html diff --git a/src/data/enderio/2.2.7.325/images/conduit_switch.png b/static/browse/enderio/conduit_switch/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/conduit_switch.png rename to static/browse/enderio/conduit_switch/icon.png diff --git a/prerender/browse/enderio/conduit_switch/index.html b/static/browse/enderio/conduit_switch/index.html similarity index 100% rename from prerender/browse/enderio/conduit_switch/index.html rename to static/browse/enderio/conduit_switch/index.html diff --git a/src/data/enderio/2.2.7.325/images/crafter.png b/static/browse/enderio/crafter/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/crafter.png rename to static/browse/enderio/crafter/icon.png diff --git a/prerender/browse/enderio/crafter/index.html b/static/browse/enderio/crafter/index.html similarity index 100% rename from prerender/browse/enderio/crafter/index.html rename to static/browse/enderio/crafter/index.html diff --git a/src/data/enderio/2.2.7.325/images/creative_buffer.png b/static/browse/enderio/creative_buffer/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/creative_buffer.png rename to static/browse/enderio/creative_buffer/icon.png diff --git a/src/data/enderio/2.2.7.325/images/creative_capacitor_bank.png b/static/browse/enderio/creative_capacitor_bank/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/creative_capacitor_bank.png rename to static/browse/enderio/creative_capacitor_bank/icon.png diff --git a/src/data/enderio/2.2.7.325/images/creative_capacitor_bank_deprecated.png b/static/browse/enderio/creative_capacitor_bank_deprecated/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/creative_capacitor_bank_deprecated.png rename to static/browse/enderio/creative_capacitor_bank_deprecated/icon.png diff --git a/src/data/enderio/2.2.7.325/images/dark_axe.png b/static/browse/enderio/dark_axe/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/dark_axe.png rename to static/browse/enderio/dark_axe/icon.png diff --git a/prerender/browse/enderio/dark_axe/index.html b/static/browse/enderio/dark_axe/index.html similarity index 100% rename from prerender/browse/enderio/dark_axe/index.html rename to static/browse/enderio/dark_axe/index.html diff --git a/src/data/enderio/2.2.7.325/images/dark_axe_2.png b/static/browse/enderio/dark_axe_2/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/dark_axe_2.png rename to static/browse/enderio/dark_axe_2/icon.png diff --git a/src/data/enderio/2.2.7.325/images/dark_boots.png b/static/browse/enderio/dark_boots/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/dark_boots.png rename to static/browse/enderio/dark_boots/icon.png diff --git a/prerender/browse/enderio/dark_boots/index.html b/static/browse/enderio/dark_boots/index.html similarity index 100% rename from prerender/browse/enderio/dark_boots/index.html rename to static/browse/enderio/dark_boots/index.html diff --git a/src/data/enderio/2.2.7.325/images/dark_boots_2.png b/static/browse/enderio/dark_boots_2/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/dark_boots_2.png rename to static/browse/enderio/dark_boots_2/icon.png diff --git a/src/data/enderio/2.2.7.325/images/dark_helm.png b/static/browse/enderio/dark_helm/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/dark_helm.png rename to static/browse/enderio/dark_helm/icon.png diff --git a/prerender/browse/enderio/dark_helm/index.html b/static/browse/enderio/dark_helm/index.html similarity index 100% rename from prerender/browse/enderio/dark_helm/index.html rename to static/browse/enderio/dark_helm/index.html diff --git a/src/data/enderio/2.2.7.325/images/dark_helm_2.png b/static/browse/enderio/dark_helm_2/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/dark_helm_2.png rename to static/browse/enderio/dark_helm_2/icon.png diff --git a/src/data/enderio/2.2.7.325/images/dark_iron_bars.png b/static/browse/enderio/dark_iron_bars/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/dark_iron_bars.png rename to static/browse/enderio/dark_iron_bars/icon.png diff --git a/prerender/browse/enderio/dark_iron_bars/index.html b/static/browse/enderio/dark_iron_bars/index.html similarity index 100% rename from prerender/browse/enderio/dark_iron_bars/index.html rename to static/browse/enderio/dark_iron_bars/index.html diff --git a/src/data/enderio/2.2.7.325/images/dark_leggings.png b/static/browse/enderio/dark_leggings/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/dark_leggings.png rename to static/browse/enderio/dark_leggings/icon.png diff --git a/prerender/browse/enderio/dark_leggings/index.html b/static/browse/enderio/dark_leggings/index.html similarity index 100% rename from prerender/browse/enderio/dark_leggings/index.html rename to static/browse/enderio/dark_leggings/index.html diff --git a/src/data/enderio/2.2.7.325/images/dark_leggings_2.png b/static/browse/enderio/dark_leggings_2/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/dark_leggings_2.png rename to static/browse/enderio/dark_leggings_2/icon.png diff --git a/src/data/enderio/2.2.7.325/images/dark_pick.png b/static/browse/enderio/dark_pick/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/dark_pick.png rename to static/browse/enderio/dark_pick/icon.png diff --git a/prerender/browse/enderio/dark_pick/index.html b/static/browse/enderio/dark_pick/index.html similarity index 100% rename from prerender/browse/enderio/dark_pick/index.html rename to static/browse/enderio/dark_pick/index.html diff --git a/src/data/enderio/2.2.7.325/images/dark_pick_2.png b/static/browse/enderio/dark_pick_2/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/dark_pick_2.png rename to static/browse/enderio/dark_pick_2/icon.png diff --git a/src/data/enderio/2.2.7.325/images/dark_plate.png b/static/browse/enderio/dark_plate/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/dark_plate.png rename to static/browse/enderio/dark_plate/icon.png diff --git a/prerender/browse/enderio/dark_plate/index.html b/static/browse/enderio/dark_plate/index.html similarity index 100% rename from prerender/browse/enderio/dark_plate/index.html rename to static/browse/enderio/dark_plate/index.html diff --git a/src/data/enderio/2.2.7.325/images/dark_plate_2.png b/static/browse/enderio/dark_plate_2/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/dark_plate_2.png rename to static/browse/enderio/dark_plate_2/icon.png diff --git a/src/data/enderio/2.2.7.325/images/dark_pressure_plate.png b/static/browse/enderio/dark_pressure_plate/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/dark_pressure_plate.png rename to static/browse/enderio/dark_pressure_plate/icon.png diff --git a/prerender/browse/enderio/dark_pressure_plate/index.html b/static/browse/enderio/dark_pressure_plate/index.html similarity index 100% rename from prerender/browse/enderio/dark_pressure_plate/index.html rename to static/browse/enderio/dark_pressure_plate/index.html diff --git a/src/data/enderio/2.2.7.325/images/dark_pressure_plate_2.png b/static/browse/enderio/dark_pressure_plate_2/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/dark_pressure_plate_2.png rename to static/browse/enderio/dark_pressure_plate_2/icon.png diff --git a/src/data/enderio/2.2.7.325/images/dark_steel.png b/static/browse/enderio/dark_steel/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/dark_steel.png rename to static/browse/enderio/dark_steel/icon.png diff --git a/prerender/browse/enderio/dark_steel/index.html b/static/browse/enderio/dark_steel/index.html similarity index 100% rename from prerender/browse/enderio/dark_steel/index.html rename to static/browse/enderio/dark_steel/index.html diff --git a/src/data/enderio/2.2.7.325/images/dark_steel_anvil.png b/static/browse/enderio/dark_steel_anvil/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/dark_steel_anvil.png rename to static/browse/enderio/dark_steel_anvil/icon.png diff --git a/prerender/browse/enderio/dark_steel_anvil/index.html b/static/browse/enderio/dark_steel_anvil/index.html similarity index 100% rename from prerender/browse/enderio/dark_steel_anvil/index.html rename to static/browse/enderio/dark_steel_anvil/index.html diff --git a/src/data/enderio/2.2.7.325/images/dark_steel_ball.png b/static/browse/enderio/dark_steel_ball/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/dark_steel_ball.png rename to static/browse/enderio/dark_steel_ball/icon.png diff --git a/prerender/browse/enderio/dark_steel_ball/index.html b/static/browse/enderio/dark_steel_ball/index.html similarity index 100% rename from prerender/browse/enderio/dark_steel_ball/index.html rename to static/browse/enderio/dark_steel_ball/index.html diff --git a/src/data/enderio/2.2.7.325/images/dark_steel_block.png b/static/browse/enderio/dark_steel_block/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/dark_steel_block.png rename to static/browse/enderio/dark_steel_block/icon.png diff --git a/prerender/browse/enderio/dark_steel_block/index.html b/static/browse/enderio/dark_steel_block/index.html similarity index 100% rename from prerender/browse/enderio/dark_steel_block/index.html rename to static/browse/enderio/dark_steel_block/index.html diff --git a/src/data/enderio/2.2.7.325/images/dark_steel_ladder.png b/static/browse/enderio/dark_steel_ladder/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/dark_steel_ladder.png rename to static/browse/enderio/dark_steel_ladder/icon.png diff --git a/prerender/browse/enderio/dark_steel_ladder/index.html b/static/browse/enderio/dark_steel_ladder/index.html similarity index 100% rename from prerender/browse/enderio/dark_steel_ladder/index.html rename to static/browse/enderio/dark_steel_ladder/index.html diff --git a/src/data/enderio/2.2.7.325/images/dimensional_transceiver.png b/static/browse/enderio/dimensional_transceiver/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/dimensional_transceiver.png rename to static/browse/enderio/dimensional_transceiver/icon.png diff --git a/prerender/browse/enderio/dimensional_transceiver/index.html b/static/browse/enderio/dimensional_transceiver/index.html similarity index 100% rename from prerender/browse/enderio/dimensional_transceiver/index.html rename to static/browse/enderio/dimensional_transceiver/index.html diff --git a/src/data/enderio/2.2.7.325/images/double_layer_capacitor.png b/static/browse/enderio/double_layer_capacitor/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/double_layer_capacitor.png rename to static/browse/enderio/double_layer_capacitor/icon.png diff --git a/prerender/browse/enderio/double_layer_capacitor/index.html b/static/browse/enderio/double_layer_capacitor/index.html similarity index 100% rename from prerender/browse/enderio/double_layer_capacitor/index.html rename to static/browse/enderio/double_layer_capacitor/index.html diff --git a/src/data/enderio/2.2.7.325/images/electrical_steel.png b/static/browse/enderio/electrical_steel/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/electrical_steel.png rename to static/browse/enderio/electrical_steel/icon.png diff --git a/prerender/browse/enderio/electrical_steel/index.html b/static/browse/enderio/electrical_steel/index.html similarity index 100% rename from prerender/browse/enderio/electrical_steel/index.html rename to static/browse/enderio/electrical_steel/index.html diff --git a/src/data/enderio/2.2.7.325/images/electrical_steel_block.png b/static/browse/enderio/electrical_steel_block/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/electrical_steel_block.png rename to static/browse/enderio/electrical_steel_block/icon.png diff --git a/prerender/browse/enderio/electrical_steel_block/index.html b/static/browse/enderio/electrical_steel_block/index.html similarity index 100% rename from prerender/browse/enderio/electrical_steel_block/index.html rename to static/browse/enderio/electrical_steel_block/index.html diff --git a/src/data/enderio/2.2.7.325/images/electromagnet.png b/static/browse/enderio/electromagnet/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/electromagnet.png rename to static/browse/enderio/electromagnet/icon.png diff --git a/prerender/browse/enderio/electromagnet/index.html b/static/browse/enderio/electromagnet/index.html similarity index 100% rename from prerender/browse/enderio/electromagnet/index.html rename to static/browse/enderio/electromagnet/index.html diff --git a/src/data/enderio/2.2.7.325/images/electromagnet_2.png b/static/browse/enderio/electromagnet_2/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/electromagnet_2.png rename to static/browse/enderio/electromagnet_2/icon.png diff --git a/src/data/enderio/2.2.7.325/images/enchanter.png b/static/browse/enderio/enchanter/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/enchanter.png rename to static/browse/enderio/enchanter/icon.png diff --git a/prerender/browse/enderio/enchanter/index.html b/static/browse/enderio/enchanter/index.html similarity index 100% rename from prerender/browse/enderio/enchanter/index.html rename to static/browse/enderio/enchanter/index.html diff --git a/src/data/enderio/2.2.7.325/images/ender_crystal.png b/static/browse/enderio/ender_crystal/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/ender_crystal.png rename to static/browse/enderio/ender_crystal/icon.png diff --git a/prerender/browse/enderio/ender_crystal/index.html b/static/browse/enderio/ender_crystal/index.html similarity index 100% rename from prerender/browse/enderio/ender_crystal/index.html rename to static/browse/enderio/ender_crystal/index.html diff --git a/src/data/enderio/2.2.7.325/images/ender_energy_conduit.png b/static/browse/enderio/ender_energy_conduit/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/ender_energy_conduit.png rename to static/browse/enderio/ender_energy_conduit/icon.png diff --git a/prerender/browse/enderio/ender_energy_conduit/index.html b/static/browse/enderio/ender_energy_conduit/index.html similarity index 100% rename from prerender/browse/enderio/ender_energy_conduit/index.html rename to static/browse/enderio/ender_energy_conduit/index.html diff --git a/src/data/enderio/2.2.7.325/images/ender_fluid_conduit.png b/static/browse/enderio/ender_fluid_conduit/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/ender_fluid_conduit.png rename to static/browse/enderio/ender_fluid_conduit/icon.png diff --git a/prerender/browse/enderio/ender_fluid_conduit/index.html b/static/browse/enderio/ender_fluid_conduit/index.html similarity index 100% rename from prerender/browse/enderio/ender_fluid_conduit/index.html rename to static/browse/enderio/ender_fluid_conduit/index.html diff --git a/src/data/enderio/2.2.7.325/images/ender_io.png b/static/browse/enderio/ender_io/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/ender_io.png rename to static/browse/enderio/ender_io/icon.png diff --git a/prerender/browse/enderio/ender_io/index.html b/static/browse/enderio/ender_io/index.html similarity index 100% rename from prerender/browse/enderio/ender_io/index.html rename to static/browse/enderio/ender_io/index.html diff --git a/src/data/enderio/2.2.7.325/images/ender_rail.png b/static/browse/enderio/ender_rail/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/ender_rail.png rename to static/browse/enderio/ender_rail/icon.png diff --git a/prerender/browse/enderio/ender_rail/index.html b/static/browse/enderio/ender_rail/index.html similarity index 100% rename from prerender/browse/enderio/ender_rail/index.html rename to static/browse/enderio/ender_rail/index.html diff --git a/src/data/enderio/2.2.7.325/images/ender_resonator.png b/static/browse/enderio/ender_resonator/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/ender_resonator.png rename to static/browse/enderio/ender_resonator/icon.png diff --git a/prerender/browse/enderio/ender_resonator/index.html b/static/browse/enderio/ender_resonator/index.html similarity index 100% rename from prerender/browse/enderio/ender_resonator/index.html rename to static/browse/enderio/ender_resonator/index.html diff --git a/src/data/enderio/2.2.7.325/images/enderman_head.png b/static/browse/enderio/enderman_head/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/enderman_head.png rename to static/browse/enderio/enderman_head/icon.png diff --git a/prerender/browse/enderio/enderman_head/index.html b/static/browse/enderio/enderman_head/index.html similarity index 100% rename from prerender/browse/enderio/enderman_head/index.html rename to static/browse/enderio/enderman_head/index.html diff --git a/src/data/enderio/2.2.7.325/images/energetic_alloy.png b/static/browse/enderio/energetic_alloy/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/energetic_alloy.png rename to static/browse/enderio/energetic_alloy/icon.png diff --git a/prerender/browse/enderio/energetic_alloy/index.html b/static/browse/enderio/energetic_alloy/index.html similarity index 100% rename from prerender/browse/enderio/energetic_alloy/index.html rename to static/browse/enderio/energetic_alloy/index.html diff --git a/src/data/enderio/2.2.7.325/images/energetic_alloy_block.png b/static/browse/enderio/energetic_alloy_block/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/energetic_alloy_block.png rename to static/browse/enderio/energetic_alloy_block/icon.png diff --git a/prerender/browse/enderio/energetic_alloy_block/index.html b/static/browse/enderio/energetic_alloy_block/index.html similarity index 100% rename from prerender/browse/enderio/energetic_alloy_block/index.html rename to static/browse/enderio/energetic_alloy_block/index.html diff --git a/src/data/enderio/2.2.7.325/images/energy_conduit.png b/static/browse/enderio/energy_conduit/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/energy_conduit.png rename to static/browse/enderio/energy_conduit/icon.png diff --git a/prerender/browse/enderio/energy_conduit/index.html b/static/browse/enderio/energy_conduit/index.html similarity index 100% rename from prerender/browse/enderio/energy_conduit/index.html rename to static/browse/enderio/energy_conduit/index.html diff --git a/src/data/enderio/2.2.7.325/images/enhanced_energy_conduit.png b/static/browse/enderio/enhanced_energy_conduit/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/enhanced_energy_conduit.png rename to static/browse/enderio/enhanced_energy_conduit/icon.png diff --git a/prerender/browse/enderio/enhanced_energy_conduit/index.html b/static/browse/enderio/enhanced_energy_conduit/index.html similarity index 100% rename from prerender/browse/enderio/enhanced_energy_conduit/index.html rename to static/browse/enderio/enhanced_energy_conduit/index.html diff --git a/src/data/enderio/2.2.7.325/images/enlightened_clear_glass.png b/static/browse/enderio/enlightened_clear_glass/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/enlightened_clear_glass.png rename to static/browse/enderio/enlightened_clear_glass/icon.png diff --git a/prerender/browse/enderio/enlightened_clear_glass/index.html b/static/browse/enderio/enlightened_clear_glass/index.html similarity index 100% rename from prerender/browse/enderio/enlightened_clear_glass/index.html rename to static/browse/enderio/enlightened_clear_glass/index.html diff --git a/src/data/enderio/2.2.7.325/images/enlightened_fused_quartz.png b/static/browse/enderio/enlightened_fused_quartz/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/enlightened_fused_quartz.png rename to static/browse/enderio/enlightened_fused_quartz/icon.png diff --git a/prerender/browse/enderio/enlightened_fused_quartz/index.html b/static/browse/enderio/enlightened_fused_quartz/index.html similarity index 100% rename from prerender/browse/enderio/enlightened_fused_quartz/index.html rename to static/browse/enderio/enlightened_fused_quartz/index.html diff --git a/src/data/enderio/2.2.7.325/images/enticing_crystal.png b/static/browse/enderio/enticing_crystal/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/enticing_crystal.png rename to static/browse/enderio/enticing_crystal/icon.png diff --git a/prerender/browse/enderio/enticing_crystal/index.html b/static/browse/enderio/enticing_crystal/index.html similarity index 100% rename from prerender/browse/enderio/enticing_crystal/index.html rename to static/browse/enderio/enticing_crystal/index.html diff --git a/src/data/enderio/2.2.7.325/images/existing_item_filter.png b/static/browse/enderio/existing_item_filter/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/existing_item_filter.png rename to static/browse/enderio/existing_item_filter/icon.png diff --git a/prerender/browse/enderio/existing_item_filter/index.html b/static/browse/enderio/existing_item_filter/index.html similarity index 100% rename from prerender/browse/enderio/existing_item_filter/index.html rename to static/browse/enderio/existing_item_filter/index.html diff --git a/src/data/enderio/2.2.7.325/images/experience_obelisk.png b/static/browse/enderio/experience_obelisk/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/experience_obelisk.png rename to static/browse/enderio/experience_obelisk/icon.png diff --git a/prerender/browse/enderio/experience_obelisk/index.html b/static/browse/enderio/experience_obelisk/index.html similarity index 100% rename from prerender/browse/enderio/experience_obelisk/index.html rename to static/browse/enderio/experience_obelisk/index.html diff --git a/src/data/enderio/2.2.7.325/images/experience_rod.png b/static/browse/enderio/experience_rod/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/experience_rod.png rename to static/browse/enderio/experience_rod/icon.png diff --git a/prerender/browse/enderio/experience_rod/index.html b/static/browse/enderio/experience_rod/index.html similarity index 100% rename from prerender/browse/enderio/experience_rod/index.html rename to static/browse/enderio/experience_rod/index.html diff --git a/src/data/enderio/2.2.7.325/images/farming_station.png b/static/browse/enderio/farming_station/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/farming_station.png rename to static/browse/enderio/farming_station/icon.png diff --git a/prerender/browse/enderio/farming_station/index.html b/static/browse/enderio/farming_station/index.html similarity index 100% rename from prerender/browse/enderio/farming_station/index.html rename to static/browse/enderio/farming_station/index.html diff --git a/src/data/enderio/2.2.7.325/images/fire_water.png b/static/browse/enderio/fire_water/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/fire_water.png rename to static/browse/enderio/fire_water/icon.png diff --git a/prerender/browse/enderio/fire_water/index.html b/static/browse/enderio/fire_water/index.html similarity index 100% rename from prerender/browse/enderio/fire_water/index.html rename to static/browse/enderio/fire_water/index.html diff --git a/src/data/enderio/2.2.7.325/images/fire_water_bucket.png b/static/browse/enderio/fire_water_bucket/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/fire_water_bucket.png rename to static/browse/enderio/fire_water_bucket/icon.png diff --git a/prerender/browse/enderio/fire_water_bucket/index.html b/static/browse/enderio/fire_water_bucket/index.html similarity index 100% rename from prerender/browse/enderio/fire_water_bucket/index.html rename to static/browse/enderio/fire_water_bucket/index.html diff --git a/src/data/enderio/2.2.7.325/images/fluid_conduit.png b/static/browse/enderio/fluid_conduit/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/fluid_conduit.png rename to static/browse/enderio/fluid_conduit/icon.png diff --git a/prerender/browse/enderio/fluid_conduit/index.html b/static/browse/enderio/fluid_conduit/index.html similarity index 100% rename from prerender/browse/enderio/fluid_conduit/index.html rename to static/browse/enderio/fluid_conduit/index.html diff --git a/src/data/enderio/2.2.7.325/images/fluid_tank.png b/static/browse/enderio/fluid_tank/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/fluid_tank.png rename to static/browse/enderio/fluid_tank/icon.png diff --git a/prerender/browse/enderio/fluid_tank/index.html b/static/browse/enderio/fluid_tank/index.html similarity index 100% rename from prerender/browse/enderio/fluid_tank/index.html rename to static/browse/enderio/fluid_tank/index.html diff --git a/src/data/enderio/2.2.7.325/images/frank_n_zombie.png b/static/browse/enderio/frank_n_zombie/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/frank_n_zombie.png rename to static/browse/enderio/frank_n_zombie/icon.png diff --git a/prerender/browse/enderio/frank_n_zombie/index.html b/static/browse/enderio/frank_n_zombie/index.html similarity index 100% rename from prerender/browse/enderio/frank_n_zombie/index.html rename to static/browse/enderio/frank_n_zombie/index.html diff --git a/src/data/enderio/2.2.7.325/images/fused_quartz.png b/static/browse/enderio/fused_quartz/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/fused_quartz.png rename to static/browse/enderio/fused_quartz/icon.png diff --git a/prerender/browse/enderio/fused_quartz/index.html b/static/browse/enderio/fused_quartz/index.html similarity index 100% rename from prerender/browse/enderio/fused_quartz/index.html rename to static/browse/enderio/fused_quartz/index.html diff --git a/src/data/enderio/2.2.7.325/images/fused_quartz_frame.png b/static/browse/enderio/fused_quartz_frame/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/fused_quartz_frame.png rename to static/browse/enderio/fused_quartz_frame/icon.png diff --git a/prerender/browse/enderio/fused_quartz_frame/index.html b/static/browse/enderio/fused_quartz_frame/index.html similarity index 100% rename from prerender/browse/enderio/fused_quartz_frame/index.html rename to static/browse/enderio/fused_quartz_frame/index.html diff --git a/src/data/enderio/2.2.7.325/images/glider_wing.png b/static/browse/enderio/glider_wing/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/glider_wing.png rename to static/browse/enderio/glider_wing/icon.png diff --git a/prerender/browse/enderio/glider_wing/index.html b/static/browse/enderio/glider_wing/index.html similarity index 100% rename from prerender/browse/enderio/glider_wing/index.html rename to static/browse/enderio/glider_wing/index.html diff --git a/src/data/enderio/2.2.7.325/images/glider_wings.png b/static/browse/enderio/glider_wings/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/glider_wings.png rename to static/browse/enderio/glider_wings/icon.png diff --git a/prerender/browse/enderio/glider_wings/index.html b/static/browse/enderio/glider_wings/index.html similarity index 100% rename from prerender/browse/enderio/glider_wings/index.html rename to static/browse/enderio/glider_wings/index.html diff --git a/src/data/enderio/2.2.7.325/images/gold_powder.png b/static/browse/enderio/gold_powder/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/gold_powder.png rename to static/browse/enderio/gold_powder/icon.png diff --git a/prerender/browse/enderio/gold_powder/index.html b/static/browse/enderio/gold_powder/index.html similarity index 100% rename from prerender/browse/enderio/gold_powder/index.html rename to static/browse/enderio/gold_powder/index.html diff --git a/src/data/enderio/2.2.7.325/images/hootch.png b/static/browse/enderio/hootch/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/hootch.png rename to static/browse/enderio/hootch/icon.png diff --git a/prerender/browse/enderio/hootch/index.html b/static/browse/enderio/hootch/index.html similarity index 100% rename from prerender/browse/enderio/hootch/index.html rename to static/browse/enderio/hootch/index.html diff --git a/src/data/enderio/2.2.7.325/images/hootch_bucket.png b/static/browse/enderio/hootch_bucket/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/hootch_bucket.png rename to static/browse/enderio/hootch_bucket/icon.png diff --git a/prerender/browse/enderio/hootch_bucket/index.html b/static/browse/enderio/hootch_bucket/index.html similarity index 100% rename from prerender/browse/enderio/hootch_bucket/index.html rename to static/browse/enderio/hootch_bucket/index.html diff --git a/src/data/enderio/logo.png b/static/browse/enderio/icon.png similarity index 100% rename from src/data/enderio/logo.png rename to static/browse/enderio/icon.png diff --git a/prerender/browse/enderio/index.html b/static/browse/enderio/index.html similarity index 100% rename from prerender/browse/enderio/index.html rename to static/browse/enderio/index.html diff --git a/src/data/enderio/2.2.7.325/images/insulated_redstone_conduit.png b/static/browse/enderio/insulated_redstone_conduit/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/insulated_redstone_conduit.png rename to static/browse/enderio/insulated_redstone_conduit/icon.png diff --git a/prerender/browse/enderio/insulated_redstone_conduit/index.html b/static/browse/enderio/insulated_redstone_conduit/index.html similarity index 100% rename from prerender/browse/enderio/insulated_redstone_conduit/index.html rename to static/browse/enderio/insulated_redstone_conduit/index.html diff --git a/src/data/enderio/2.2.7.325/images/iron_powder.png b/static/browse/enderio/iron_powder/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/iron_powder.png rename to static/browse/enderio/iron_powder/icon.png diff --git a/prerender/browse/enderio/iron_powder/index.html b/static/browse/enderio/iron_powder/index.html similarity index 100% rename from prerender/browse/enderio/iron_powder/index.html rename to static/browse/enderio/iron_powder/index.html diff --git a/src/data/enderio/2.2.7.325/images/item_buffer.png b/static/browse/enderio/item_buffer/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/item_buffer.png rename to static/browse/enderio/item_buffer/icon.png diff --git a/prerender/browse/enderio/item_buffer/index.html b/static/browse/enderio/item_buffer/index.html similarity index 100% rename from prerender/browse/enderio/item_buffer/index.html rename to static/browse/enderio/item_buffer/index.html diff --git a/src/data/enderio/2.2.7.325/images/item_conduit.png b/static/browse/enderio/item_conduit/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/item_conduit.png rename to static/browse/enderio/item_conduit/icon.png diff --git a/prerender/browse/enderio/item_conduit/index.html b/static/browse/enderio/item_conduit/index.html similarity index 100% rename from prerender/browse/enderio/item_conduit/index.html rename to static/browse/enderio/item_conduit/index.html diff --git a/src/data/enderio/2.2.7.325/images/item_conduit_speed_upgrade.png b/static/browse/enderio/item_conduit_speed_upgrade/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/item_conduit_speed_upgrade.png rename to static/browse/enderio/item_conduit_speed_upgrade/icon.png diff --git a/prerender/browse/enderio/item_conduit_speed_upgrade/index.html b/static/browse/enderio/item_conduit_speed_upgrade/index.html similarity index 100% rename from prerender/browse/enderio/item_conduit_speed_upgrade/index.html rename to static/browse/enderio/item_conduit_speed_upgrade/index.html diff --git a/src/data/enderio/2.2.7.325/images/killer_joe.png b/static/browse/enderio/killer_joe/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/killer_joe.png rename to static/browse/enderio/killer_joe/icon.png diff --git a/prerender/browse/enderio/killer_joe/index.html b/static/browse/enderio/killer_joe/index.html similarity index 100% rename from prerender/browse/enderio/killer_joe/index.html rename to static/browse/enderio/killer_joe/index.html diff --git a/src/data/enderio/2.2.7.325/images/light.png b/static/browse/enderio/light/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/light.png rename to static/browse/enderio/light/icon.png diff --git a/prerender/browse/enderio/light/index.html b/static/browse/enderio/light/index.html similarity index 100% rename from prerender/browse/enderio/light/index.html rename to static/browse/enderio/light/index.html diff --git a/src/data/enderio/2.2.7.325/images/light_inverted.png b/static/browse/enderio/light_inverted/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/light_inverted.png rename to static/browse/enderio/light_inverted/icon.png diff --git a/prerender/browse/enderio/light_inverted/index.html b/static/browse/enderio/light_inverted/index.html similarity index 100% rename from prerender/browse/enderio/light_inverted/index.html rename to static/browse/enderio/light_inverted/index.html diff --git a/src/data/enderio/2.2.7.325/images/liquid_xp.png b/static/browse/enderio/liquid_xp/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/liquid_xp.png rename to static/browse/enderio/liquid_xp/icon.png diff --git a/prerender/browse/enderio/liquid_xp/index.html b/static/browse/enderio/liquid_xp/index.html similarity index 100% rename from prerender/browse/enderio/liquid_xp/index.html rename to static/browse/enderio/liquid_xp/index.html diff --git a/src/data/enderio/2.2.7.325/images/machine_chassis.png b/static/browse/enderio/machine_chassis/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/machine_chassis.png rename to static/browse/enderio/machine_chassis/icon.png diff --git a/prerender/browse/enderio/machine_chassis/index.html b/static/browse/enderio/machine_chassis/index.html similarity index 100% rename from prerender/browse/enderio/machine_chassis/index.html rename to static/browse/enderio/machine_chassis/index.html diff --git a/src/data/enderio/2.2.7.325/images/mod_item_filter.png b/static/browse/enderio/mod_item_filter/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/mod_item_filter.png rename to static/browse/enderio/mod_item_filter/icon.png diff --git a/prerender/browse/enderio/mod_item_filter/index.html b/static/browse/enderio/mod_item_filter/index.html similarity index 100% rename from prerender/browse/enderio/mod_item_filter/index.html rename to static/browse/enderio/mod_item_filter/index.html diff --git a/src/data/enderio/2.2.7.325/images/nutrient_distillation.png b/static/browse/enderio/nutrient_distillation/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/nutrient_distillation.png rename to static/browse/enderio/nutrient_distillation/icon.png diff --git a/prerender/browse/enderio/nutrient_distillation/index.html b/static/browse/enderio/nutrient_distillation/index.html similarity index 100% rename from prerender/browse/enderio/nutrient_distillation/index.html rename to static/browse/enderio/nutrient_distillation/index.html diff --git a/src/data/enderio/2.2.7.325/images/nutrient_distillation_bucket.png b/static/browse/enderio/nutrient_distillation_bucket/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/nutrient_distillation_bucket.png rename to static/browse/enderio/nutrient_distillation_bucket/icon.png diff --git a/prerender/browse/enderio/nutrient_distillation_bucket/index.html b/static/browse/enderio/nutrient_distillation_bucket/index.html similarity index 100% rename from prerender/browse/enderio/nutrient_distillation_bucket/index.html rename to static/browse/enderio/nutrient_distillation_bucket/index.html diff --git a/src/data/enderio/2.2.7.325/images/octadic_capacitor.png b/static/browse/enderio/octadic_capacitor/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/octadic_capacitor.png rename to static/browse/enderio/octadic_capacitor/icon.png diff --git a/prerender/browse/enderio/octadic_capacitor/index.html b/static/browse/enderio/octadic_capacitor/index.html similarity index 100% rename from prerender/browse/enderio/octadic_capacitor/index.html rename to static/browse/enderio/octadic_capacitor/index.html diff --git a/src/data/enderio/2.2.7.325/images/omni_buffer.png b/static/browse/enderio/omni_buffer/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/omni_buffer.png rename to static/browse/enderio/omni_buffer/icon.png diff --git a/prerender/browse/enderio/omni_buffer/index.html b/static/browse/enderio/omni_buffer/index.html similarity index 100% rename from prerender/browse/enderio/omni_buffer/index.html rename to static/browse/enderio/omni_buffer/index.html diff --git a/src/data/enderio/2.2.7.325/images/painting_machine.png b/static/browse/enderio/painting_machine/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/painting_machine.png rename to static/browse/enderio/painting_machine/icon.png diff --git a/prerender/browse/enderio/painting_machine/index.html b/static/browse/enderio/painting_machine/index.html similarity index 100% rename from prerender/browse/enderio/painting_machine/index.html rename to static/browse/enderio/painting_machine/index.html diff --git a/src/data/enderio/2.2.7.325/images/photovoltaic_cell.png b/static/browse/enderio/photovoltaic_cell/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/photovoltaic_cell.png rename to static/browse/enderio/photovoltaic_cell/icon.png diff --git a/prerender/browse/enderio/photovoltaic_cell/index.html b/static/browse/enderio/photovoltaic_cell/index.html similarity index 100% rename from prerender/browse/enderio/photovoltaic_cell/index.html rename to static/browse/enderio/photovoltaic_cell/index.html diff --git a/src/data/enderio/2.2.7.325/images/power_buffer.png b/static/browse/enderio/power_buffer/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/power_buffer.png rename to static/browse/enderio/power_buffer/icon.png diff --git a/prerender/browse/enderio/power_buffer/index.html b/static/browse/enderio/power_buffer/index.html similarity index 100% rename from prerender/browse/enderio/power_buffer/index.html rename to static/browse/enderio/power_buffer/index.html diff --git a/src/data/enderio/2.2.7.325/images/power_monitor.png b/static/browse/enderio/power_monitor/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/power_monitor.png rename to static/browse/enderio/power_monitor/icon.png diff --git a/prerender/browse/enderio/power_monitor/index.html b/static/browse/enderio/power_monitor/index.html similarity index 100% rename from prerender/browse/enderio/power_monitor/index.html rename to static/browse/enderio/power_monitor/index.html diff --git a/src/data/enderio/2.2.7.325/images/powered_light.png b/static/browse/enderio/powered_light/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/powered_light.png rename to static/browse/enderio/powered_light/icon.png diff --git a/prerender/browse/enderio/powered_light/index.html b/static/browse/enderio/powered_light/index.html similarity index 100% rename from prerender/browse/enderio/powered_light/index.html rename to static/browse/enderio/powered_light/index.html diff --git a/src/data/enderio/2.2.7.325/images/powered_light_inverted.png b/static/browse/enderio/powered_light_inverted/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/powered_light_inverted.png rename to static/browse/enderio/powered_light_inverted/icon.png diff --git a/prerender/browse/enderio/powered_light_inverted/index.html b/static/browse/enderio/powered_light_inverted/index.html similarity index 100% rename from prerender/browse/enderio/powered_light_inverted/index.html rename to static/browse/enderio/powered_light_inverted/index.html diff --git a/src/data/enderio/2.2.7.325/images/powered_spawner.png b/static/browse/enderio/powered_spawner/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/powered_spawner.png rename to static/browse/enderio/powered_spawner/icon.png diff --git a/prerender/browse/enderio/powered_spawner/index.html b/static/browse/enderio/powered_spawner/index.html similarity index 100% rename from prerender/browse/enderio/powered_spawner/index.html rename to static/browse/enderio/powered_spawner/index.html diff --git a/src/data/enderio/2.2.7.325/images/powered_spawner_2.png b/static/browse/enderio/powered_spawner_2/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/powered_spawner_2.png rename to static/browse/enderio/powered_spawner_2/icon.png diff --git a/src/data/enderio/2.2.7.325/images/powered_spawner_3.png b/static/browse/enderio/powered_spawner_3/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/powered_spawner_3.png rename to static/browse/enderio/powered_spawner_3/icon.png diff --git a/src/data/enderio/2.2.7.325/images/pressurized_fluid_conduit.png b/static/browse/enderio/pressurized_fluid_conduit/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/pressurized_fluid_conduit.png rename to static/browse/enderio/pressurized_fluid_conduit/icon.png diff --git a/prerender/browse/enderio/pressurized_fluid_conduit/index.html b/static/browse/enderio/pressurized_fluid_conduit/index.html similarity index 100% rename from prerender/browse/enderio/pressurized_fluid_conduit/index.html rename to static/browse/enderio/pressurized_fluid_conduit/index.html diff --git a/src/data/enderio/2.2.7.325/images/pressurized_fluid_tank.png b/static/browse/enderio/pressurized_fluid_tank/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/pressurized_fluid_tank.png rename to static/browse/enderio/pressurized_fluid_tank/icon.png diff --git a/prerender/browse/enderio/pressurized_fluid_tank/index.html b/static/browse/enderio/pressurized_fluid_tank/index.html similarity index 100% rename from prerender/browse/enderio/pressurized_fluid_tank/index.html rename to static/browse/enderio/pressurized_fluid_tank/index.html diff --git a/src/data/enderio/2.2.7.325/images/pulsating_crystal.png b/static/browse/enderio/pulsating_crystal/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/pulsating_crystal.png rename to static/browse/enderio/pulsating_crystal/icon.png diff --git a/prerender/browse/enderio/pulsating_crystal/index.html b/static/browse/enderio/pulsating_crystal/index.html similarity index 100% rename from prerender/browse/enderio/pulsating_crystal/index.html rename to static/browse/enderio/pulsating_crystal/index.html diff --git a/src/data/enderio/2.2.7.325/images/pulsating_iron.png b/static/browse/enderio/pulsating_iron/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/pulsating_iron.png rename to static/browse/enderio/pulsating_iron/icon.png diff --git a/prerender/browse/enderio/pulsating_iron/index.html b/static/browse/enderio/pulsating_iron/index.html similarity index 100% rename from prerender/browse/enderio/pulsating_iron/index.html rename to static/browse/enderio/pulsating_iron/index.html diff --git a/src/data/enderio/2.2.7.325/images/pulsating_iron_block.png b/static/browse/enderio/pulsating_iron_block/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/pulsating_iron_block.png rename to static/browse/enderio/pulsating_iron_block/icon.png diff --git a/prerender/browse/enderio/pulsating_iron_block/index.html b/static/browse/enderio/pulsating_iron_block/index.html similarity index 100% rename from prerender/browse/enderio/pulsating_iron_block/index.html rename to static/browse/enderio/pulsating_iron_block/index.html diff --git a/src/data/enderio/2.2.7.325/images/pulsating_iron_nugget.png b/static/browse/enderio/pulsating_iron_nugget/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/pulsating_iron_nugget.png rename to static/browse/enderio/pulsating_iron_nugget/icon.png diff --git a/prerender/browse/enderio/pulsating_iron_nugget/index.html b/static/browse/enderio/pulsating_iron_nugget/index.html similarity index 100% rename from prerender/browse/enderio/pulsating_iron_nugget/index.html rename to static/browse/enderio/pulsating_iron_nugget/index.html diff --git a/src/data/enderio/2.2.7.325/images/quite_clear_glass.png b/static/browse/enderio/quite_clear_glass/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/quite_clear_glass.png rename to static/browse/enderio/quite_clear_glass/icon.png diff --git a/prerender/browse/enderio/quite_clear_glass/index.html b/static/browse/enderio/quite_clear_glass/index.html similarity index 100% rename from prerender/browse/enderio/quite_clear_glass/index.html rename to static/browse/enderio/quite_clear_glass/index.html diff --git a/src/data/enderio/2.2.7.325/images/redstone_alloy.png b/static/browse/enderio/redstone_alloy/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/redstone_alloy.png rename to static/browse/enderio/redstone_alloy/icon.png diff --git a/prerender/browse/enderio/redstone_alloy/index.html b/static/browse/enderio/redstone_alloy/index.html similarity index 100% rename from prerender/browse/enderio/redstone_alloy/index.html rename to static/browse/enderio/redstone_alloy/index.html diff --git a/src/data/enderio/2.2.7.325/images/redstone_alloy_block.png b/static/browse/enderio/redstone_alloy_block/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/redstone_alloy_block.png rename to static/browse/enderio/redstone_alloy_block/icon.png diff --git a/prerender/browse/enderio/redstone_alloy_block/index.html b/static/browse/enderio/redstone_alloy_block/index.html similarity index 100% rename from prerender/browse/enderio/redstone_alloy_block/index.html rename to static/browse/enderio/redstone_alloy_block/index.html diff --git a/src/data/enderio/2.2.7.325/images/redstone_conduit.png b/static/browse/enderio/redstone_conduit/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/redstone_conduit.png rename to static/browse/enderio/redstone_conduit/icon.png diff --git a/prerender/browse/enderio/redstone_conduit/index.html b/static/browse/enderio/redstone_conduit/index.html similarity index 100% rename from prerender/browse/enderio/redstone_conduit/index.html rename to static/browse/enderio/redstone_conduit/index.html diff --git a/src/data/enderio/2.2.7.325/images/reinforced_obsidian.png b/static/browse/enderio/reinforced_obsidian/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/reinforced_obsidian.png rename to static/browse/enderio/reinforced_obsidian/icon.png diff --git a/prerender/browse/enderio/reinforced_obsidian/index.html b/static/browse/enderio/reinforced_obsidian/index.html similarity index 100% rename from prerender/browse/enderio/reinforced_obsidian/index.html rename to static/browse/enderio/reinforced_obsidian/index.html diff --git a/src/data/enderio/2.2.7.325/images/reservoir.png b/static/browse/enderio/reservoir/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/reservoir.png rename to static/browse/enderio/reservoir/icon.png diff --git a/prerender/browse/enderio/reservoir/index.html b/static/browse/enderio/reservoir/index.html similarity index 100% rename from prerender/browse/enderio/reservoir/index.html rename to static/browse/enderio/reservoir/index.html diff --git a/src/data/enderio/2.2.7.325/images/rocket_fuel.png b/static/browse/enderio/rocket_fuel/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/rocket_fuel.png rename to static/browse/enderio/rocket_fuel/icon.png diff --git a/prerender/browse/enderio/rocket_fuel/index.html b/static/browse/enderio/rocket_fuel/index.html similarity index 100% rename from prerender/browse/enderio/rocket_fuel/index.html rename to static/browse/enderio/rocket_fuel/index.html diff --git a/src/data/enderio/2.2.7.325/images/rocket_fuel_bucket.png b/static/browse/enderio/rocket_fuel_bucket/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/rocket_fuel_bucket.png rename to static/browse/enderio/rocket_fuel_bucket/icon.png diff --git a/prerender/browse/enderio/rocket_fuel_bucket/index.html b/static/browse/enderio/rocket_fuel_bucket/index.html similarity index 100% rename from prerender/browse/enderio/rocket_fuel_bucket/index.html rename to static/browse/enderio/rocket_fuel_bucket/index.html diff --git a/src/data/enderio/2.2.7.325/images/sag_mill.png b/static/browse/enderio/sag_mill/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/sag_mill.png rename to static/browse/enderio/sag_mill/icon.png diff --git a/prerender/browse/enderio/sag_mill/index.html b/static/browse/enderio/sag_mill/index.html similarity index 100% rename from prerender/browse/enderio/sag_mill/index.html rename to static/browse/enderio/sag_mill/index.html diff --git a/src/data/enderio/2.2.7.325/images/silicon.png b/static/browse/enderio/silicon/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/silicon.png rename to static/browse/enderio/silicon/icon.png diff --git a/prerender/browse/enderio/silicon/index.html b/static/browse/enderio/silicon/index.html similarity index 100% rename from prerender/browse/enderio/silicon/index.html rename to static/browse/enderio/silicon/index.html diff --git a/src/data/enderio/2.2.7.325/images/slice_n_splice.png b/static/browse/enderio/slice_n_splice/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/slice_n_splice.png rename to static/browse/enderio/slice_n_splice/icon.png diff --git a/prerender/browse/enderio/slice_n_splice/index.html b/static/browse/enderio/slice_n_splice/index.html similarity index 100% rename from prerender/browse/enderio/slice_n_splice/index.html rename to static/browse/enderio/slice_n_splice/index.html diff --git a/src/data/enderio/2.2.7.325/images/slightly_damaged_dark_steel_anvil.png b/static/browse/enderio/slightly_damaged_dark_steel_anvil/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/slightly_damaged_dark_steel_anvil.png rename to static/browse/enderio/slightly_damaged_dark_steel_anvil/icon.png diff --git a/src/data/enderio/2.2.7.325/images/soul_binder.png b/static/browse/enderio/soul_binder/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/soul_binder.png rename to static/browse/enderio/soul_binder/icon.png diff --git a/prerender/browse/enderio/soul_binder/index.html b/static/browse/enderio/soul_binder/index.html similarity index 100% rename from prerender/browse/enderio/soul_binder/index.html rename to static/browse/enderio/soul_binder/index.html diff --git a/src/data/enderio/2.2.7.325/images/soul_vial.png b/static/browse/enderio/soul_vial/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/soul_vial.png rename to static/browse/enderio/soul_vial/icon.png diff --git a/prerender/browse/enderio/soul_vial/index.html b/static/browse/enderio/soul_vial/index.html similarity index 100% rename from prerender/browse/enderio/soul_vial/index.html rename to static/browse/enderio/soul_vial/index.html diff --git a/src/data/enderio/2.2.7.325/images/soul_vial_filled.png b/static/browse/enderio/soul_vial_filled/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/soul_vial_filled.png rename to static/browse/enderio/soul_vial_filled/icon.png diff --git a/prerender/browse/enderio/soul_vial_filled/index.html b/static/browse/enderio/soul_vial_filled/index.html similarity index 100% rename from prerender/browse/enderio/soul_vial_filled/index.html rename to static/browse/enderio/soul_vial_filled/index.html diff --git a/src/data/enderio/2.2.7.325/images/soularium.png b/static/browse/enderio/soularium/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/soularium.png rename to static/browse/enderio/soularium/icon.png diff --git a/prerender/browse/enderio/soularium/index.html b/static/browse/enderio/soularium/index.html similarity index 100% rename from prerender/browse/enderio/soularium/index.html rename to static/browse/enderio/soularium/index.html diff --git a/src/data/enderio/2.2.7.325/images/soularium_block.png b/static/browse/enderio/soularium_block/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/soularium_block.png rename to static/browse/enderio/soularium_block/icon.png diff --git a/prerender/browse/enderio/soularium_block/index.html b/static/browse/enderio/soularium_block/index.html similarity index 100% rename from prerender/browse/enderio/soularium_block/index.html rename to static/browse/enderio/soularium_block/index.html diff --git a/src/data/enderio/2.2.7.325/images/staff_of_traveling.png b/static/browse/enderio/staff_of_traveling/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/staff_of_traveling.png rename to static/browse/enderio/staff_of_traveling/icon.png diff --git a/prerender/browse/enderio/staff_of_traveling/index.html b/static/browse/enderio/staff_of_traveling/index.html similarity index 100% rename from prerender/browse/enderio/staff_of_traveling/index.html rename to static/browse/enderio/staff_of_traveling/index.html diff --git a/src/data/enderio/2.2.7.325/images/staff_of_traveling_2.png b/static/browse/enderio/staff_of_traveling_2/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/staff_of_traveling_2.png rename to static/browse/enderio/staff_of_traveling_2/icon.png diff --git a/src/data/enderio/2.2.7.325/images/stirling_generator.png b/static/browse/enderio/stirling_generator/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/stirling_generator.png rename to static/browse/enderio/stirling_generator/icon.png diff --git a/prerender/browse/enderio/stirling_generator/index.html b/static/browse/enderio/stirling_generator/index.html similarity index 100% rename from prerender/browse/enderio/stirling_generator/index.html rename to static/browse/enderio/stirling_generator/index.html diff --git a/src/data/enderio/2.2.7.325/images/the_ender.png b/static/browse/enderio/the_ender/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/the_ender.png rename to static/browse/enderio/the_ender/icon.png diff --git a/prerender/browse/enderio/the_ender/index.html b/static/browse/enderio/the_ender/index.html similarity index 100% rename from prerender/browse/enderio/the_ender/index.html rename to static/browse/enderio/the_ender/index.html diff --git a/src/data/enderio/2.2.7.325/images/the_ender_2.png b/static/browse/enderio/the_ender_2/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/the_ender_2.png rename to static/browse/enderio/the_ender_2/icon.png diff --git a/src/data/enderio/2.2.7.325/images/the_vat.png b/static/browse/enderio/the_vat/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/the_vat.png rename to static/browse/enderio/the_vat/icon.png diff --git a/prerender/browse/enderio/the_vat/index.html b/static/browse/enderio/the_vat/index.html similarity index 100% rename from prerender/browse/enderio/the_vat/index.html rename to static/browse/enderio/the_vat/index.html diff --git a/src/data/enderio/2.2.7.325/images/tile_blocklightnode_name.png b/static/browse/enderio/tile_blocklightnode_name/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/tile_blocklightnode_name.png rename to static/browse/enderio/tile_blocklightnode_name/icon.png diff --git a/src/data/enderio/2.2.7.325/images/tormented_enderman_head.png b/static/browse/enderio/tormented_enderman_head/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/tormented_enderman_head.png rename to static/browse/enderio/tormented_enderman_head/icon.png diff --git a/prerender/browse/enderio/tormented_enderman_head/index.html b/static/browse/enderio/tormented_enderman_head/index.html similarity index 100% rename from prerender/browse/enderio/tormented_enderman_head/index.html rename to static/browse/enderio/tormented_enderman_head/index.html diff --git a/src/data/enderio/2.2.7.325/images/travel_anchor.png b/static/browse/enderio/travel_anchor/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/travel_anchor.png rename to static/browse/enderio/travel_anchor/icon.png diff --git a/prerender/browse/enderio/travel_anchor/index.html b/static/browse/enderio/travel_anchor/index.html similarity index 100% rename from prerender/browse/enderio/travel_anchor/index.html rename to static/browse/enderio/travel_anchor/index.html diff --git a/src/data/enderio/2.2.7.325/images/vacuum_chest.png b/static/browse/enderio/vacuum_chest/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/vacuum_chest.png rename to static/browse/enderio/vacuum_chest/icon.png diff --git a/prerender/browse/enderio/vacuum_chest/index.html b/static/browse/enderio/vacuum_chest/index.html similarity index 100% rename from prerender/browse/enderio/vacuum_chest/index.html rename to static/browse/enderio/vacuum_chest/index.html diff --git a/src/data/enderio/2.2.7.325/images/very_damaged_dark_steel_anvil.png b/static/browse/enderio/very_damaged_dark_steel_anvil/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/very_damaged_dark_steel_anvil.png rename to static/browse/enderio/very_damaged_dark_steel_anvil/icon.png diff --git a/src/data/enderio/2.2.7.325/images/vibrant_alloy.png b/static/browse/enderio/vibrant_alloy/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/vibrant_alloy.png rename to static/browse/enderio/vibrant_alloy/icon.png diff --git a/prerender/browse/enderio/vibrant_alloy/index.html b/static/browse/enderio/vibrant_alloy/index.html similarity index 100% rename from prerender/browse/enderio/vibrant_alloy/index.html rename to static/browse/enderio/vibrant_alloy/index.html diff --git a/src/data/enderio/2.2.7.325/images/vibrant_alloy_block.png b/static/browse/enderio/vibrant_alloy_block/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/vibrant_alloy_block.png rename to static/browse/enderio/vibrant_alloy_block/icon.png diff --git a/prerender/browse/enderio/vibrant_alloy_block/index.html b/static/browse/enderio/vibrant_alloy_block/index.html similarity index 100% rename from prerender/browse/enderio/vibrant_alloy_block/index.html rename to static/browse/enderio/vibrant_alloy_block/index.html diff --git a/src/data/enderio/2.2.7.325/images/vibrant_alloy_nugget.png b/static/browse/enderio/vibrant_alloy_nugget/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/vibrant_alloy_nugget.png rename to static/browse/enderio/vibrant_alloy_nugget/icon.png diff --git a/prerender/browse/enderio/vibrant_alloy_nugget/index.html b/static/browse/enderio/vibrant_alloy_nugget/index.html similarity index 100% rename from prerender/browse/enderio/vibrant_alloy_nugget/index.html rename to static/browse/enderio/vibrant_alloy_nugget/index.html diff --git a/src/data/enderio/2.2.7.325/images/vibrant_capacitor_bank.png b/static/browse/enderio/vibrant_capacitor_bank/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/vibrant_capacitor_bank.png rename to static/browse/enderio/vibrant_capacitor_bank/icon.png diff --git a/prerender/browse/enderio/vibrant_capacitor_bank/index.html b/static/browse/enderio/vibrant_capacitor_bank/index.html similarity index 100% rename from prerender/browse/enderio/vibrant_capacitor_bank/index.html rename to static/browse/enderio/vibrant_capacitor_bank/index.html diff --git a/src/data/enderio/2.2.7.325/images/vibrant_capacitor_bank_2.png b/static/browse/enderio/vibrant_capacitor_bank_2/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/vibrant_capacitor_bank_2.png rename to static/browse/enderio/vibrant_capacitor_bank_2/icon.png diff --git a/src/data/enderio/2.2.7.325/images/vibrant_crystal.png b/static/browse/enderio/vibrant_crystal/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/vibrant_crystal.png rename to static/browse/enderio/vibrant_crystal/icon.png diff --git a/prerender/browse/enderio/vibrant_crystal/index.html b/static/browse/enderio/vibrant_crystal/index.html similarity index 100% rename from prerender/browse/enderio/vibrant_crystal/index.html rename to static/browse/enderio/vibrant_crystal/index.html diff --git a/src/data/enderio/2.2.7.325/images/wireless_charger.png b/static/browse/enderio/wireless_charger/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/wireless_charger.png rename to static/browse/enderio/wireless_charger/icon.png diff --git a/prerender/browse/enderio/wireless_charger/index.html b/static/browse/enderio/wireless_charger/index.html similarity index 100% rename from prerender/browse/enderio/wireless_charger/index.html rename to static/browse/enderio/wireless_charger/index.html diff --git a/src/data/enderio/2.2.7.325/images/wireless_powered_light.png b/static/browse/enderio/wireless_powered_light/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/wireless_powered_light.png rename to static/browse/enderio/wireless_powered_light/icon.png diff --git a/prerender/browse/enderio/wireless_powered_light/index.html b/static/browse/enderio/wireless_powered_light/index.html similarity index 100% rename from prerender/browse/enderio/wireless_powered_light/index.html rename to static/browse/enderio/wireless_powered_light/index.html diff --git a/src/data/enderio/2.2.7.325/images/wireless_powered_light_inverted.png b/static/browse/enderio/wireless_powered_light_inverted/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/wireless_powered_light_inverted.png rename to static/browse/enderio/wireless_powered_light_inverted/icon.png diff --git a/prerender/browse/enderio/wireless_powered_light_inverted/index.html b/static/browse/enderio/wireless_powered_light_inverted/index.html similarity index 100% rename from prerender/browse/enderio/wireless_powered_light_inverted/index.html rename to static/browse/enderio/wireless_powered_light_inverted/index.html diff --git a/src/data/enderio/2.2.7.325/images/xp_bucket.png b/static/browse/enderio/xp_bucket/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/xp_bucket.png rename to static/browse/enderio/xp_bucket/icon.png diff --git a/prerender/browse/enderio/xp_bucket/index.html b/static/browse/enderio/xp_bucket/index.html similarity index 100% rename from prerender/browse/enderio/xp_bucket/index.html rename to static/browse/enderio/xp_bucket/index.html diff --git a/src/data/enderio/2.2.7.325/images/yeta_wrench.png b/static/browse/enderio/yeta_wrench/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/yeta_wrench.png rename to static/browse/enderio/yeta_wrench/icon.png diff --git a/prerender/browse/enderio/yeta_wrench/index.html b/static/browse/enderio/yeta_wrench/index.html similarity index 100% rename from prerender/browse/enderio/yeta_wrench/index.html rename to static/browse/enderio/yeta_wrench/index.html diff --git a/src/data/enderio/2.2.7.325/images/z_logic_controller.png b/static/browse/enderio/z_logic_controller/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/z_logic_controller.png rename to static/browse/enderio/z_logic_controller/icon.png diff --git a/prerender/browse/enderio/z_logic_controller/index.html b/static/browse/enderio/z_logic_controller/index.html similarity index 100% rename from prerender/browse/enderio/z_logic_controller/index.html rename to static/browse/enderio/z_logic_controller/index.html diff --git a/src/data/enderio/2.2.7.325/images/zombie_electrode.png b/static/browse/enderio/zombie_electrode/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/zombie_electrode.png rename to static/browse/enderio/zombie_electrode/icon.png diff --git a/prerender/browse/enderio/zombie_electrode/index.html b/static/browse/enderio/zombie_electrode/index.html similarity index 100% rename from prerender/browse/enderio/zombie_electrode/index.html rename to static/browse/enderio/zombie_electrode/index.html diff --git a/src/data/enderio/2.2.7.325/images/zombie_generator.png b/static/browse/enderio/zombie_generator/icon.png similarity index 100% rename from src/data/enderio/2.2.7.325/images/zombie_generator.png rename to static/browse/enderio/zombie_generator/icon.png diff --git a/prerender/browse/enderio/zombie_generator/index.html b/static/browse/enderio/zombie_generator/index.html similarity index 100% rename from prerender/browse/enderio/zombie_generator/index.html rename to static/browse/enderio/zombie_generator/index.html diff --git a/prerender/browse/index.html b/static/browse/index.html similarity index 100% rename from prerender/browse/index.html rename to static/browse/index.html diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/10k_coolant_cell.png b/static/browse/industrial_craft_2/10k_coolant_cell/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/10k_coolant_cell.png rename to static/browse/industrial_craft_2/10k_coolant_cell/icon.png diff --git a/prerender/browse/industrial_craft_2/10k_coolant_cell/index.html b/static/browse/industrial_craft_2/10k_coolant_cell/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/10k_coolant_cell/index.html rename to static/browse/industrial_craft_2/10k_coolant_cell/index.html diff --git a/prerender/browse/industrial_craft_2/2x_ins_gold_cable/index.html b/static/browse/industrial_craft_2/2x_ins_gold_cable/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/2x_ins_gold_cable/index.html rename to static/browse/industrial_craft_2/2x_ins_gold_cable/index.html diff --git a/prerender/browse/industrial_craft_2/2x_ins_hv_cable/index.html b/static/browse/industrial_craft_2/2x_ins_hv_cable/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/2x_ins_hv_cable/index.html rename to static/browse/industrial_craft_2/2x_ins_hv_cable/index.html diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/30k_coolant_cell.png b/static/browse/industrial_craft_2/30k_coolant_cell/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/30k_coolant_cell.png rename to static/browse/industrial_craft_2/30k_coolant_cell/icon.png diff --git a/prerender/browse/industrial_craft_2/30k_coolant_cell/index.html b/static/browse/industrial_craft_2/30k_coolant_cell/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/30k_coolant_cell/index.html rename to static/browse/industrial_craft_2/30k_coolant_cell/index.html diff --git a/prerender/browse/industrial_craft_2/4x_ins_hv_cable/index.html b/static/browse/industrial_craft_2/4x_ins_hv_cable/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/4x_ins_hv_cable/index.html rename to static/browse/industrial_craft_2/4x_ins_hv_cable/index.html diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/60k_coolant_cell.png b/static/browse/industrial_craft_2/60k_coolant_cell/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/60k_coolant_cell.png rename to static/browse/industrial_craft_2/60k_coolant_cell/icon.png diff --git a/prerender/browse/industrial_craft_2/60k_coolant_cell/index.html b/static/browse/industrial_craft_2/60k_coolant_cell/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/60k_coolant_cell/index.html rename to static/browse/industrial_craft_2/60k_coolant_cell/index.html diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/advanced_alloy.png b/static/browse/industrial_craft_2/advanced_alloy/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/advanced_alloy.png rename to static/browse/industrial_craft_2/advanced_alloy/icon.png diff --git a/prerender/browse/industrial_craft_2/advanced_alloy/index.html b/static/browse/industrial_craft_2/advanced_alloy/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/advanced_alloy/index.html rename to static/browse/industrial_craft_2/advanced_alloy/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/advanced_batpack.png b/static/browse/industrial_craft_2/advanced_batpack/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/advanced_batpack.png rename to static/browse/industrial_craft_2/advanced_batpack/icon.png diff --git a/prerender/browse/industrial_craft_2/advanced_batpack/index.html b/static/browse/industrial_craft_2/advanced_batpack/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/advanced_batpack/index.html rename to static/browse/industrial_craft_2/advanced_batpack/index.html diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/advanced_circuit.png b/static/browse/industrial_craft_2/advanced_circuit/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/advanced_circuit.png rename to static/browse/industrial_craft_2/advanced_circuit/icon.png diff --git a/prerender/browse/industrial_craft_2/advanced_circuit/index.html b/static/browse/industrial_craft_2/advanced_circuit/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/advanced_circuit/index.html rename to static/browse/industrial_craft_2/advanced_circuit/index.html diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/advanced_heat_exchanger.png b/static/browse/industrial_craft_2/advanced_heat_exchanger/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/advanced_heat_exchanger.png rename to static/browse/industrial_craft_2/advanced_heat_exchanger/icon.png diff --git a/prerender/browse/industrial_craft_2/advanced_heat_exchanger/index.html b/static/browse/industrial_craft_2/advanced_heat_exchanger/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/advanced_heat_exchanger/index.html rename to static/browse/industrial_craft_2/advanced_heat_exchanger/index.html diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/advanced_heat_vent.png b/static/browse/industrial_craft_2/advanced_heat_vent/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/advanced_heat_vent.png rename to static/browse/industrial_craft_2/advanced_heat_vent/icon.png diff --git a/prerender/browse/industrial_craft_2/advanced_heat_vent/index.html b/static/browse/industrial_craft_2/advanced_heat_vent/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/advanced_heat_vent/index.html rename to static/browse/industrial_craft_2/advanced_heat_vent/index.html diff --git a/prerender/browse/industrial_craft_2/advanced_machine_block/index.html b/static/browse/industrial_craft_2/advanced_machine_block/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/advanced_machine_block/index.html rename to static/browse/industrial_craft_2/advanced_machine_block/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/advanced_machine_casing.png b/static/browse/industrial_craft_2/advanced_machine_casing/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/advanced_machine_casing.png rename to static/browse/industrial_craft_2/advanced_machine_casing/icon.png diff --git a/prerender/browse/industrial_craft_2/advanced_machine_casing/index.html b/static/browse/industrial_craft_2/advanced_machine_casing/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/advanced_machine_casing/index.html rename to static/browse/industrial_craft_2/advanced_machine_casing/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/advanced_miner.png b/static/browse/industrial_craft_2/advanced_miner/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/advanced_miner.png rename to static/browse/industrial_craft_2/advanced_miner/icon.png diff --git a/prerender/browse/industrial_craft_2/advanced_miner/index.html b/static/browse/industrial_craft_2/advanced_miner/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/advanced_miner/index.html rename to static/browse/industrial_craft_2/advanced_miner/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/advanced_re_battery.png b/static/browse/industrial_craft_2/advanced_re_battery/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/advanced_re_battery.png rename to static/browse/industrial_craft_2/advanced_re_battery/icon.png diff --git a/prerender/browse/industrial_craft_2/advanced_re_battery/index.html b/static/browse/industrial_craft_2/advanced_re_battery/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/advanced_re_battery/index.html rename to static/browse/industrial_craft_2/advanced_re_battery/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/ashes.png b/static/browse/industrial_craft_2/ashes/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/ashes.png rename to static/browse/industrial_craft_2/ashes/icon.png diff --git a/prerender/browse/industrial_craft_2/ashes/index.html b/static/browse/industrial_craft_2/ashes/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/ashes/index.html rename to static/browse/industrial_craft_2/ashes/index.html diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/aurelia_seeds.png b/static/browse/industrial_craft_2/aurelia_seeds/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/aurelia_seeds.png rename to static/browse/industrial_craft_2/aurelia_seeds/icon.png diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/basalt.png b/static/browse/industrial_craft_2/basalt/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/basalt.png rename to static/browse/industrial_craft_2/basalt/icon.png diff --git a/prerender/browse/industrial_craft_2/basalt/index.html b/static/browse/industrial_craft_2/basalt/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/basalt/index.html rename to static/browse/industrial_craft_2/basalt/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/basic_machine_casing.png b/static/browse/industrial_craft_2/basic_machine_casing/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/basic_machine_casing.png rename to static/browse/industrial_craft_2/basic_machine_casing/icon.png diff --git a/prerender/browse/industrial_craft_2/basic_machine_casing/index.html b/static/browse/industrial_craft_2/basic_machine_casing/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/basic_machine_casing/index.html rename to static/browse/industrial_craft_2/basic_machine_casing/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/batbox.png b/static/browse/industrial_craft_2/batbox/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/batbox.png rename to static/browse/industrial_craft_2/batbox/icon.png diff --git a/prerender/browse/industrial_craft_2/batbox/index.html b/static/browse/industrial_craft_2/batbox/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/batbox/index.html rename to static/browse/industrial_craft_2/batbox/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/batpack.png b/static/browse/industrial_craft_2/batpack/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/batpack.png rename to static/browse/industrial_craft_2/batpack/icon.png diff --git a/prerender/browse/industrial_craft_2/batpack/index.html b/static/browse/industrial_craft_2/batpack/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/batpack/index.html rename to static/browse/industrial_craft_2/batpack/index.html diff --git a/prerender/browse/industrial_craft_2/bio_cell/index.html b/static/browse/industrial_craft_2/bio_cell/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/bio_cell/index.html rename to static/browse/industrial_craft_2/bio_cell/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/bio_chaff.png b/static/browse/industrial_craft_2/bio_chaff/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/bio_chaff.png rename to static/browse/industrial_craft_2/bio_chaff/icon.png diff --git a/prerender/browse/industrial_craft_2/bio_chaff/index.html b/static/browse/industrial_craft_2/bio_chaff/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/bio_chaff/index.html rename to static/browse/industrial_craft_2/bio_chaff/index.html diff --git a/prerender/browse/industrial_craft_2/biofuel_cell/index.html b/static/browse/industrial_craft_2/biofuel_cell/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/biofuel_cell/index.html rename to static/browse/industrial_craft_2/biofuel_cell/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/biogas.png b/static/browse/industrial_craft_2/biogas/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/biogas.png rename to static/browse/industrial_craft_2/biogas/icon.png diff --git a/prerender/browse/industrial_craft_2/biogas/index.html b/static/browse/industrial_craft_2/biogas/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/biogas/index.html rename to static/browse/industrial_craft_2/biogas/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/biogas_cell.png b/static/browse/industrial_craft_2/biogas_cell/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/biogas_cell.png rename to static/browse/industrial_craft_2/biogas_cell/icon.png diff --git a/prerender/browse/industrial_craft_2/biogas_cell/index.html b/static/browse/industrial_craft_2/biogas_cell/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/biogas_cell/index.html rename to static/browse/industrial_craft_2/biogas_cell/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/biomass.png b/static/browse/industrial_craft_2/biomass/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/biomass.png rename to static/browse/industrial_craft_2/biomass/icon.png diff --git a/prerender/browse/industrial_craft_2/biomass/index.html b/static/browse/industrial_craft_2/biomass/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/biomass/index.html rename to static/browse/industrial_craft_2/biomass/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/biomass_cell.png b/static/browse/industrial_craft_2/biomass_cell/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/biomass_cell.png rename to static/browse/industrial_craft_2/biomass_cell/icon.png diff --git a/prerender/browse/industrial_craft_2/biomass_cell/index.html b/static/browse/industrial_craft_2/biomass_cell/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/biomass_cell/index.html rename to static/browse/industrial_craft_2/biomass_cell/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/black_painter.png b/static/browse/industrial_craft_2/black_painter/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/black_painter.png rename to static/browse/industrial_craft_2/black_painter/icon.png diff --git a/prerender/browse/industrial_craft_2/black_painter/index.html b/static/browse/industrial_craft_2/black_painter/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/black_painter/index.html rename to static/browse/industrial_craft_2/black_painter/index.html diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/blackthorn_seeds.png b/static/browse/industrial_craft_2/blackthorn_seeds/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/blackthorn_seeds.png rename to static/browse/industrial_craft_2/blackthorn_seeds/icon.png diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/blast_furnace.png b/static/browse/industrial_craft_2/blast_furnace/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/blast_furnace.png rename to static/browse/industrial_craft_2/blast_furnace/icon.png diff --git a/prerender/browse/industrial_craft_2/blast_furnace/index.html b/static/browse/industrial_craft_2/blast_furnace/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/blast_furnace/index.html rename to static/browse/industrial_craft_2/blast_furnace/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/block_cutting_blade_diamond.png b/static/browse/industrial_craft_2/block_cutting_blade_diamond/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/block_cutting_blade_diamond.png rename to static/browse/industrial_craft_2/block_cutting_blade_diamond/icon.png diff --git a/prerender/browse/industrial_craft_2/block_cutting_blade_diamond/index.html b/static/browse/industrial_craft_2/block_cutting_blade_diamond/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/block_cutting_blade_diamond/index.html rename to static/browse/industrial_craft_2/block_cutting_blade_diamond/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/block_cutting_blade_iron.png b/static/browse/industrial_craft_2/block_cutting_blade_iron/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/block_cutting_blade_iron.png rename to static/browse/industrial_craft_2/block_cutting_blade_iron/icon.png diff --git a/prerender/browse/industrial_craft_2/block_cutting_blade_iron/index.html b/static/browse/industrial_craft_2/block_cutting_blade_iron/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/block_cutting_blade_iron/index.html rename to static/browse/industrial_craft_2/block_cutting_blade_iron/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/block_cutting_blade_refined_iron.png b/static/browse/industrial_craft_2/block_cutting_blade_refined_iron/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/block_cutting_blade_refined_iron.png rename to static/browse/industrial_craft_2/block_cutting_blade_refined_iron/icon.png diff --git a/prerender/browse/industrial_craft_2/block_cutting_blade_refined_iron/index.html b/static/browse/industrial_craft_2/block_cutting_blade_refined_iron/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/block_cutting_blade_refined_iron/index.html rename to static/browse/industrial_craft_2/block_cutting_blade_refined_iron/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/block_cutting_machine.png b/static/browse/industrial_craft_2/block_cutting_machine/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/block_cutting_machine.png rename to static/browse/industrial_craft_2/block_cutting_machine/icon.png diff --git a/prerender/browse/industrial_craft_2/block_cutting_machine/index.html b/static/browse/industrial_craft_2/block_cutting_machine/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/block_cutting_machine/index.html rename to static/browse/industrial_craft_2/block_cutting_machine/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/blue_painter.png b/static/browse/industrial_craft_2/blue_painter/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/blue_painter.png rename to static/browse/industrial_craft_2/blue_painter/icon.png diff --git a/prerender/browse/industrial_craft_2/blue_painter/index.html b/static/browse/industrial_craft_2/blue_painter/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/blue_painter/index.html rename to static/browse/industrial_craft_2/blue_painter/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/bottling_plant.png b/static/browse/industrial_craft_2/bottling_plant/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/bottling_plant.png rename to static/browse/industrial_craft_2/bottling_plant/icon.png diff --git a/prerender/browse/industrial_craft_2/bottling_plant/index.html b/static/browse/industrial_craft_2/bottling_plant/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/bottling_plant/index.html rename to static/browse/industrial_craft_2/bottling_plant/index.html diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/bronze_axe.png b/static/browse/industrial_craft_2/bronze_axe/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/bronze_axe.png rename to static/browse/industrial_craft_2/bronze_axe/icon.png diff --git a/prerender/browse/industrial_craft_2/bronze_axe/index.html b/static/browse/industrial_craft_2/bronze_axe/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/bronze_axe/index.html rename to static/browse/industrial_craft_2/bronze_axe/index.html diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/bronze_block.png b/static/browse/industrial_craft_2/bronze_block/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/bronze_block.png rename to static/browse/industrial_craft_2/bronze_block/icon.png diff --git a/prerender/browse/industrial_craft_2/bronze_block/index.html b/static/browse/industrial_craft_2/bronze_block/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/bronze_block/index.html rename to static/browse/industrial_craft_2/bronze_block/index.html diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/bronze_boots.png b/static/browse/industrial_craft_2/bronze_boots/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/bronze_boots.png rename to static/browse/industrial_craft_2/bronze_boots/icon.png diff --git a/prerender/browse/industrial_craft_2/bronze_boots/index.html b/static/browse/industrial_craft_2/bronze_boots/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/bronze_boots/index.html rename to static/browse/industrial_craft_2/bronze_boots/index.html diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/bronze_chestplate.png b/static/browse/industrial_craft_2/bronze_chestplate/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/bronze_chestplate.png rename to static/browse/industrial_craft_2/bronze_chestplate/icon.png diff --git a/prerender/browse/industrial_craft_2/bronze_chestplate/index.html b/static/browse/industrial_craft_2/bronze_chestplate/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/bronze_chestplate/index.html rename to static/browse/industrial_craft_2/bronze_chestplate/index.html diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/bronze_dust.png b/static/browse/industrial_craft_2/bronze_dust/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/bronze_dust.png rename to static/browse/industrial_craft_2/bronze_dust/icon.png diff --git a/prerender/browse/industrial_craft_2/bronze_dust/index.html b/static/browse/industrial_craft_2/bronze_dust/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/bronze_dust/index.html rename to static/browse/industrial_craft_2/bronze_dust/index.html diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/bronze_helmet.png b/static/browse/industrial_craft_2/bronze_helmet/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/bronze_helmet.png rename to static/browse/industrial_craft_2/bronze_helmet/icon.png diff --git a/prerender/browse/industrial_craft_2/bronze_helmet/index.html b/static/browse/industrial_craft_2/bronze_helmet/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/bronze_helmet/index.html rename to static/browse/industrial_craft_2/bronze_helmet/index.html diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/bronze_hoe.png b/static/browse/industrial_craft_2/bronze_hoe/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/bronze_hoe.png rename to static/browse/industrial_craft_2/bronze_hoe/icon.png diff --git a/prerender/browse/industrial_craft_2/bronze_hoe/index.html b/static/browse/industrial_craft_2/bronze_hoe/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/bronze_hoe/index.html rename to static/browse/industrial_craft_2/bronze_hoe/index.html diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/bronze_ingot.png b/static/browse/industrial_craft_2/bronze_ingot/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/bronze_ingot.png rename to static/browse/industrial_craft_2/bronze_ingot/icon.png diff --git a/prerender/browse/industrial_craft_2/bronze_ingot/index.html b/static/browse/industrial_craft_2/bronze_ingot/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/bronze_ingot/index.html rename to static/browse/industrial_craft_2/bronze_ingot/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/bronze_item_casing.png b/static/browse/industrial_craft_2/bronze_item_casing/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/bronze_item_casing.png rename to static/browse/industrial_craft_2/bronze_item_casing/icon.png diff --git a/prerender/browse/industrial_craft_2/bronze_item_casing/index.html b/static/browse/industrial_craft_2/bronze_item_casing/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/bronze_item_casing/index.html rename to static/browse/industrial_craft_2/bronze_item_casing/index.html diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/bronze_leggings.png b/static/browse/industrial_craft_2/bronze_leggings/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/bronze_leggings.png rename to static/browse/industrial_craft_2/bronze_leggings/icon.png diff --git a/prerender/browse/industrial_craft_2/bronze_leggings/index.html b/static/browse/industrial_craft_2/bronze_leggings/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/bronze_leggings/index.html rename to static/browse/industrial_craft_2/bronze_leggings/index.html diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/bronze_pickaxe.png b/static/browse/industrial_craft_2/bronze_pickaxe/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/bronze_pickaxe.png rename to static/browse/industrial_craft_2/bronze_pickaxe/icon.png diff --git a/prerender/browse/industrial_craft_2/bronze_pickaxe/index.html b/static/browse/industrial_craft_2/bronze_pickaxe/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/bronze_pickaxe/index.html rename to static/browse/industrial_craft_2/bronze_pickaxe/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/bronze_plate.png b/static/browse/industrial_craft_2/bronze_plate/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/bronze_plate.png rename to static/browse/industrial_craft_2/bronze_plate/icon.png diff --git a/prerender/browse/industrial_craft_2/bronze_plate/index.html b/static/browse/industrial_craft_2/bronze_plate/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/bronze_plate/index.html rename to static/browse/industrial_craft_2/bronze_plate/index.html diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/bronze_shovel.png b/static/browse/industrial_craft_2/bronze_shovel/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/bronze_shovel.png rename to static/browse/industrial_craft_2/bronze_shovel/icon.png diff --git a/prerender/browse/industrial_craft_2/bronze_shovel/index.html b/static/browse/industrial_craft_2/bronze_shovel/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/bronze_shovel/index.html rename to static/browse/industrial_craft_2/bronze_shovel/index.html diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/bronze_sword.png b/static/browse/industrial_craft_2/bronze_sword/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/bronze_sword.png rename to static/browse/industrial_craft_2/bronze_sword/icon.png diff --git a/prerender/browse/industrial_craft_2/bronze_sword/index.html b/static/browse/industrial_craft_2/bronze_sword/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/bronze_sword/index.html rename to static/browse/industrial_craft_2/bronze_sword/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/brown_painter.png b/static/browse/industrial_craft_2/brown_painter/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/brown_painter.png rename to static/browse/industrial_craft_2/brown_painter/icon.png diff --git a/prerender/browse/industrial_craft_2/brown_painter/index.html b/static/browse/industrial_craft_2/brown_painter/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/brown_painter/index.html rename to static/browse/industrial_craft_2/brown_painter/index.html diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/carrots_seeds.png b/static/browse/industrial_craft_2/brownmushroom_seeds/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/carrots_seeds.png rename to static/browse/industrial_craft_2/brownmushroom_seeds/icon.png diff --git a/prerender/browse/industrial_craft_2/canning_machine/index.html b/static/browse/industrial_craft_2/canning_machine/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/canning_machine/index.html rename to static/browse/industrial_craft_2/canning_machine/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/carbon_fiber_canoe.png b/static/browse/industrial_craft_2/carbon_fiber_canoe/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/carbon_fiber_canoe.png rename to static/browse/industrial_craft_2/carbon_fiber_canoe/icon.png diff --git a/prerender/browse/industrial_craft_2/carbon_fiber_canoe/index.html b/static/browse/industrial_craft_2/carbon_fiber_canoe/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/carbon_fiber_canoe/index.html rename to static/browse/industrial_craft_2/carbon_fiber_canoe/index.html diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/carbon_plate.png b/static/browse/industrial_craft_2/carbon_plate/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/carbon_plate.png rename to static/browse/industrial_craft_2/carbon_plate/icon.png diff --git a/prerender/browse/industrial_craft_2/carbon_plate/index.html b/static/browse/industrial_craft_2/carbon_plate/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/carbon_plate/index.html rename to static/browse/industrial_craft_2/carbon_plate/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/carbon_rotor_blade.png b/static/browse/industrial_craft_2/carbon_rotor_blade/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/carbon_rotor_blade.png rename to static/browse/industrial_craft_2/carbon_rotor_blade/icon.png diff --git a/prerender/browse/industrial_craft_2/carbon_rotor_blade/index.html b/static/browse/industrial_craft_2/carbon_rotor_blade/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/carbon_rotor_blade/index.html rename to static/browse/industrial_craft_2/carbon_rotor_blade/index.html diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/cocoa_seeds.png b/static/browse/industrial_craft_2/carrots_seeds/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/cocoa_seeds.png rename to static/browse/industrial_craft_2/carrots_seeds/icon.png diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/cesu.png b/static/browse/industrial_craft_2/cesu/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/cesu.png rename to static/browse/industrial_craft_2/cesu/icon.png diff --git a/prerender/browse/industrial_craft_2/cesu/index.html b/static/browse/industrial_craft_2/cesu/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/cesu/index.html rename to static/browse/industrial_craft_2/cesu/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/cf_backpack.png b/static/browse/industrial_craft_2/cf_backpack/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/cf_backpack.png rename to static/browse/industrial_craft_2/cf_backpack/icon.png diff --git a/prerender/browse/industrial_craft_2/cf_backpack/index.html b/static/browse/industrial_craft_2/cf_backpack/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/cf_backpack/index.html rename to static/browse/industrial_craft_2/cf_backpack/index.html diff --git a/prerender/browse/industrial_craft_2/cf_pellet/index.html b/static/browse/industrial_craft_2/cf_pellet/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/cf_pellet/index.html rename to static/browse/industrial_craft_2/cf_pellet/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/cf_powder.png b/static/browse/industrial_craft_2/cf_powder/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/cf_powder.png rename to static/browse/industrial_craft_2/cf_powder/icon.png diff --git a/prerender/browse/industrial_craft_2/cf_powder/index.html b/static/browse/industrial_craft_2/cf_powder/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/cf_powder/index.html rename to static/browse/industrial_craft_2/cf_powder/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/cf_sprayer.png b/static/browse/industrial_craft_2/cf_sprayer/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/cf_sprayer.png rename to static/browse/industrial_craft_2/cf_sprayer/icon.png diff --git a/prerender/browse/industrial_craft_2/cf_sprayer/index.html b/static/browse/industrial_craft_2/cf_sprayer/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/cf_sprayer/index.html rename to static/browse/industrial_craft_2/cf_sprayer/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/chainsaw.png b/static/browse/industrial_craft_2/chainsaw/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/chainsaw.png rename to static/browse/industrial_craft_2/chainsaw/icon.png diff --git a/prerender/browse/industrial_craft_2/chainsaw/index.html b/static/browse/industrial_craft_2/chainsaw/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/chainsaw/index.html rename to static/browse/industrial_craft_2/chainsaw/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/charge_pad_batbox.png b/static/browse/industrial_craft_2/charge_pad_batbox/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/charge_pad_batbox.png rename to static/browse/industrial_craft_2/charge_pad_batbox/icon.png diff --git a/prerender/browse/industrial_craft_2/charge_pad_batbox/index.html b/static/browse/industrial_craft_2/charge_pad_batbox/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/charge_pad_batbox/index.html rename to static/browse/industrial_craft_2/charge_pad_batbox/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/charge_pad_cesu.png b/static/browse/industrial_craft_2/charge_pad_cesu/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/charge_pad_cesu.png rename to static/browse/industrial_craft_2/charge_pad_cesu/icon.png diff --git a/prerender/browse/industrial_craft_2/charge_pad_cesu/index.html b/static/browse/industrial_craft_2/charge_pad_cesu/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/charge_pad_cesu/index.html rename to static/browse/industrial_craft_2/charge_pad_cesu/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/charge_pad_mfe.png b/static/browse/industrial_craft_2/charge_pad_mfe/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/charge_pad_mfe.png rename to static/browse/industrial_craft_2/charge_pad_mfe/icon.png diff --git a/prerender/browse/industrial_craft_2/charge_pad_mfe/index.html b/static/browse/industrial_craft_2/charge_pad_mfe/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/charge_pad_mfe/index.html rename to static/browse/industrial_craft_2/charge_pad_mfe/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/charge_pad_mfsu.png b/static/browse/industrial_craft_2/charge_pad_mfsu/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/charge_pad_mfsu.png rename to static/browse/industrial_craft_2/charge_pad_mfsu/icon.png diff --git a/prerender/browse/industrial_craft_2/charge_pad_mfsu/index.html b/static/browse/industrial_craft_2/charge_pad_mfsu/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/charge_pad_mfsu/index.html rename to static/browse/industrial_craft_2/charge_pad_mfsu/index.html diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/hydration_cell.png b/static/browse/industrial_craft_2/classic-1.7.10-6/10k_coolant_cell/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/hydration_cell.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/10k_coolant_cell/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/2x_ins_gold_cable.png b/static/browse/industrial_craft_2/classic-1.7.10-6/2x_ins_gold_cable/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/2x_ins_gold_cable.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/2x_ins_gold_cable/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/2x_ins_hv_cable.png b/static/browse/industrial_craft_2/classic-1.7.10-6/2x_ins_hv_cable/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/2x_ins_hv_cable.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/2x_ins_hv_cable/icon.png diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/30k_coolant_cell.png b/static/browse/industrial_craft_2/classic-1.7.10-6/30k_coolant_cell/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/30k_coolant_cell.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/30k_coolant_cell/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/4x_ins_hv_cable.png b/static/browse/industrial_craft_2/classic-1.7.10-6/4x_ins_hv_cable/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/4x_ins_hv_cable.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/4x_ins_hv_cable/icon.png diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/60k_coolant_cell.png b/static/browse/industrial_craft_2/classic-1.7.10-6/60k_coolant_cell/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/60k_coolant_cell.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/60k_coolant_cell/icon.png diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/advanced_alloy.png b/static/browse/industrial_craft_2/classic-1.7.10-6/advanced_alloy/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/advanced_alloy.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/advanced_alloy/icon.png diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/advanced_circuit.png b/static/browse/industrial_craft_2/classic-1.7.10-6/advanced_circuit/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/advanced_circuit.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/advanced_circuit/icon.png diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/advanced_heat_exchanger.png b/static/browse/industrial_craft_2/classic-1.7.10-6/advanced_heat_exchanger/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/advanced_heat_exchanger.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/advanced_heat_exchanger/icon.png diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/advanced_heat_vent.png b/static/browse/industrial_craft_2/classic-1.7.10-6/advanced_heat_vent/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/advanced_heat_vent.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/advanced_heat_vent/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/advanced_machine_block.png b/static/browse/industrial_craft_2/classic-1.7.10-6/advanced_machine_block/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/advanced_machine_block.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/advanced_machine_block/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/coffee_seeds.png b/static/browse/industrial_craft_2/classic-1.7.10-6/aurelia_seeds/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/coffee_seeds.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/aurelia_seeds/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/batbox.png b/static/browse/industrial_craft_2/classic-1.7.10-6/batbox/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/batbox.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/batbox/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/batpack.png b/static/browse/industrial_craft_2/classic-1.7.10-6/batpack/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/batpack.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/batpack/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/bio_cell.png b/static/browse/industrial_craft_2/classic-1.7.10-6/bio_cell/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/bio_cell.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/bio_cell/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/biofuel_cell.png b/static/browse/industrial_craft_2/classic-1.7.10-6/biofuel_cell/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/biofuel_cell.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/biofuel_cell/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/cyazint_seeds.png b/static/browse/industrial_craft_2/classic-1.7.10-6/blackthorn_seeds/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/cyazint_seeds.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/blackthorn_seeds/icon.png diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/bronze_axe.png b/static/browse/industrial_craft_2/classic-1.7.10-6/bronze_axe/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/bronze_axe.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/bronze_axe/icon.png diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/bronze_block.png b/static/browse/industrial_craft_2/classic-1.7.10-6/bronze_block/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/bronze_block.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/bronze_block/icon.png diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/bronze_boots.png b/static/browse/industrial_craft_2/classic-1.7.10-6/bronze_boots/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/bronze_boots.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/bronze_boots/icon.png diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/bronze_chestplate.png b/static/browse/industrial_craft_2/classic-1.7.10-6/bronze_chestplate/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/bronze_chestplate.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/bronze_chestplate/icon.png diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/bronze_dust.png b/static/browse/industrial_craft_2/classic-1.7.10-6/bronze_dust/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/bronze_dust.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/bronze_dust/icon.png diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/bronze_helmet.png b/static/browse/industrial_craft_2/classic-1.7.10-6/bronze_helmet/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/bronze_helmet.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/bronze_helmet/icon.png diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/bronze_hoe.png b/static/browse/industrial_craft_2/classic-1.7.10-6/bronze_hoe/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/bronze_hoe.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/bronze_hoe/icon.png diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/bronze_ingot.png b/static/browse/industrial_craft_2/classic-1.7.10-6/bronze_ingot/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/bronze_ingot.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/bronze_ingot/icon.png diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/bronze_leggings.png b/static/browse/industrial_craft_2/classic-1.7.10-6/bronze_leggings/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/bronze_leggings.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/bronze_leggings/icon.png diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/bronze_pickaxe.png b/static/browse/industrial_craft_2/classic-1.7.10-6/bronze_pickaxe/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/bronze_pickaxe.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/bronze_pickaxe/icon.png diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/bronze_shovel.png b/static/browse/industrial_craft_2/classic-1.7.10-6/bronze_shovel/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/bronze_shovel.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/bronze_shovel/icon.png diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/bronze_sword.png b/static/browse/industrial_craft_2/classic-1.7.10-6/bronze_sword/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/bronze_sword.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/bronze_sword/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/canning_machine.png b/static/browse/industrial_craft_2/classic-1.7.10-6/canning_machine/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/canning_machine.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/canning_machine/icon.png diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/carbon_plate.png b/static/browse/industrial_craft_2/classic-1.7.10-6/carbon_plate/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/carbon_plate.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/carbon_plate/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/dandelion_seeds.png b/static/browse/industrial_craft_2/classic-1.7.10-6/carrots_seeds/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/dandelion_seeds.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/carrots_seeds/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/cf_backpack.png b/static/browse/industrial_craft_2/classic-1.7.10-6/cf_backpack/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/cf_backpack.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/cf_backpack/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/cf_pellet.png b/static/browse/industrial_craft_2/classic-1.7.10-6/cf_pellet/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/cf_pellet.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/cf_pellet/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/cf_sprayer.png b/static/browse/industrial_craft_2/classic-1.7.10-6/cf_sprayer/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/cf_sprayer.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/cf_sprayer/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/chainsaw.png b/static/browse/industrial_craft_2/classic-1.7.10-6/chainsaw/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/chainsaw.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/chainsaw/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/clay_dust.png b/static/browse/industrial_craft_2/classic-1.7.10-6/clay_dust/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/clay_dust.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/clay_dust/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/coal_ball.png b/static/browse/industrial_craft_2/classic-1.7.10-6/coal_ball/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/coal_ball.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/coal_ball/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/coal_chunk.png b/static/browse/industrial_craft_2/classic-1.7.10-6/coal_chunk/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/coal_chunk.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/coal_chunk/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/coal_dust.png b/static/browse/industrial_craft_2/classic-1.7.10-6/coal_dust/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/coal_dust.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/coal_dust/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/coalfuel_cell.png b/static/browse/industrial_craft_2/classic-1.7.10-6/coalfuel_cell/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/coalfuel_cell.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/coalfuel_cell/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/ferru_seeds.png b/static/browse/industrial_craft_2/classic-1.7.10-6/cocoa_seeds/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/ferru_seeds.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/cocoa_seeds/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/coffee.png b/static/browse/industrial_craft_2/classic-1.7.10-6/coffee/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/coffee.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/coffee/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/coffee_beans.png b/static/browse/industrial_craft_2/classic-1.7.10-6/coffee_beans/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/coffee_beans.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/coffee_beans/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/coffee_powder.png b/static/browse/industrial_craft_2/classic-1.7.10-6/coffee_powder/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/coffee_powder.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/coffee_powder/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/hops_seeds.png b/static/browse/industrial_craft_2/classic-1.7.10-6/coffee_seeds/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/hops_seeds.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/coffee_seeds/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/cold_coffee.png b/static/browse/industrial_craft_2/classic-1.7.10-6/cold_coffee/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/cold_coffee.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/cold_coffee/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/component_heat_exchanger.png b/static/browse/industrial_craft_2/classic-1.7.10-6/component_heat_exchanger/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/component_heat_exchanger.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/component_heat_exchanger/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/component_heat_vent.png b/static/browse/industrial_craft_2/classic-1.7.10-6/component_heat_vent/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/component_heat_vent.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/component_heat_vent/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/composite_vest.png b/static/browse/industrial_craft_2/classic-1.7.10-6/composite_vest/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/composite_vest.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/composite_vest/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/compressed_air_cell.png b/static/browse/industrial_craft_2/classic-1.7.10-6/compressed_air_cell/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/compressed_air_cell.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/compressed_air_cell/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/compressed_coal_ball.png b/static/browse/industrial_craft_2/classic-1.7.10-6/compressed_coal_ball/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/compressed_coal_ball.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/compressed_coal_ball/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/compressed_hyd_coalclump.png b/static/browse/industrial_craft_2/classic-1.7.10-6/compressed_hyd_coalclump/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/compressed_hyd_coalclump.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/compressed_hyd_coalclump/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/compressed_plants.png b/static/browse/industrial_craft_2/classic-1.7.10-6/compressed_plants/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/compressed_plants.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/compressed_plants/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/compressor.png b/static/browse/industrial_craft_2/classic-1.7.10-6/compressor/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/compressor.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/compressor/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/construction_foam.png b/static/browse/industrial_craft_2/classic-1.7.10-6/construction_foam/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/construction_foam.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/construction_foam/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/containment_reactor_plating.png b/static/browse/industrial_craft_2/classic-1.7.10-6/containment_reactor_plating/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/containment_reactor_plating.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/containment_reactor_plating/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/copper_block.png b/static/browse/industrial_craft_2/classic-1.7.10-6/copper_block/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/copper_block.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/copper_block/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/copper_cable.png b/static/browse/industrial_craft_2/classic-1.7.10-6/copper_cable/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/copper_cable.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/copper_cable/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/copper_dust.png b/static/browse/industrial_craft_2/classic-1.7.10-6/copper_dust/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/copper_dust.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/copper_dust/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/copper_ingot.png b/static/browse/industrial_craft_2/classic-1.7.10-6/copper_ingot/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/copper_ingot.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/copper_ingot/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/copper_ore.png b/static/browse/industrial_craft_2/classic-1.7.10-6/copper_ore/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/copper_ore.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/copper_ore/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/crop.png b/static/browse/industrial_craft_2/classic-1.7.10-6/crop/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/crop.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/crop/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/crop_matron.png b/static/browse/industrial_craft_2/classic-1.7.10-6/crop_matron/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/crop_matron.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/crop_matron/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/cropnalyzer.png b/static/browse/industrial_craft_2/classic-1.7.10-6/cropnalyzer/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/cropnalyzer.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/cropnalyzer/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/melon_seeds.png b/static/browse/industrial_craft_2/classic-1.7.10-6/cyazint_seeds/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/melon_seeds.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/cyazint_seeds/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/nether_wart_seeds.png b/static/browse/industrial_craft_2/classic-1.7.10-6/dandelion_seeds/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/nether_wart_seeds.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/dandelion_seeds/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/dark_coffee.png b/static/browse/industrial_craft_2/classic-1.7.10-6/dark_coffee/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/dark_coffee.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/dark_coffee/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/dense_copper_plate.png b/static/browse/industrial_craft_2/classic-1.7.10-6/dense_copper_plate/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/dense_copper_plate.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/dense_copper_plate/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/depleted_isotope_cell.png b/static/browse/industrial_craft_2/classic-1.7.10-6/depleted_isotope_cell/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/depleted_isotope_cell.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/depleted_isotope_cell/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/diamond_drill.png b/static/browse/industrial_craft_2/classic-1.7.10-6/diamond_drill/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/diamond_drill.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/diamond_drill/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/diamond_industrial.png b/static/browse/industrial_craft_2/classic-1.7.10-6/diamond_industrial/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/diamond_industrial.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/diamond_industrial/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/dual_uranium_cell.png b/static/browse/industrial_craft_2/classic-1.7.10-6/dual_uranium_cell/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/dual_uranium_cell.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/dual_uranium_cell/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/dynamite.png b/static/browse/industrial_craft_2/classic-1.7.10-6/dynamite/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/dynamite.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/dynamite/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/dynamite_o_mote.png b/static/browse/industrial_craft_2/classic-1.7.10-6/dynamite_o_mote/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/dynamite_o_mote.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/dynamite_o_mote/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/electric_furnace.png b/static/browse/industrial_craft_2/classic-1.7.10-6/electric_furnace/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/electric_furnace.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/electric_furnace/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/electric_hoe.png b/static/browse/industrial_craft_2/classic-1.7.10-6/electric_hoe/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/electric_hoe.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/electric_hoe/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/electric_jetpack.png b/static/browse/industrial_craft_2/classic-1.7.10-6/electric_jetpack/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/electric_jetpack.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/electric_jetpack/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/electric_treetap.png b/static/browse/industrial_craft_2/classic-1.7.10-6/electric_treetap/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/electric_treetap.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/electric_treetap/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/electric_wrench.png b/static/browse/industrial_craft_2/classic-1.7.10-6/electric_wrench/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/electric_wrench.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/electric_wrench/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/electrolyzed_water_cell.png b/static/browse/industrial_craft_2/classic-1.7.10-6/electrolyzed_water_cell/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/electrolyzed_water_cell.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/electrolyzed_water_cell/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/electrolyzer.png b/static/browse/industrial_craft_2/classic-1.7.10-6/electrolyzer/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/electrolyzer.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/electrolyzer/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/electronic_circuit.png b/static/browse/industrial_craft_2/classic-1.7.10-6/electronic_circuit/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/electronic_circuit.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/electronic_circuit/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/empty_booze_barrel.png b/static/browse/industrial_craft_2/classic-1.7.10-6/empty_booze_barrel/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/empty_booze_barrel.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/empty_booze_barrel/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/empty_cell.png b/static/browse/industrial_craft_2/classic-1.7.10-6/empty_cell/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/empty_cell.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/empty_cell/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/empty_fuel_can.png b/static/browse/industrial_craft_2/classic-1.7.10-6/empty_fuel_can/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/empty_fuel_can.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/empty_fuel_can/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/energy_crystal.png b/static/browse/industrial_craft_2/classic-1.7.10-6/energy_crystal/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/energy_crystal.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/energy_crystal/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/energy_o_mat.png b/static/browse/industrial_craft_2/classic-1.7.10-6/energy_o_mat/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/energy_o_mat.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/energy_o_mat/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/energy_storage_upgrade.png b/static/browse/industrial_craft_2/classic-1.7.10-6/energy_storage_upgrade/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/energy_storage_upgrade.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/energy_storage_upgrade/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/eu_detector_cable.png b/static/browse/industrial_craft_2/classic-1.7.10-6/eu_detector_cable/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/eu_detector_cable.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/eu_detector_cable/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/eu_reader.png b/static/browse/industrial_craft_2/classic-1.7.10-6/eu_reader/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/eu_reader.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/eu_reader/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/eu_splitter_cable.png b/static/browse/industrial_craft_2/classic-1.7.10-6/eu_splitter_cable/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/eu_splitter_cable.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/eu_splitter_cable/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/extractor.png b/static/browse/industrial_craft_2/classic-1.7.10-6/extractor/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/extractor.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/extractor/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/potato_seeds.png b/static/browse/industrial_craft_2/classic-1.7.10-6/ferru_seeds/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/potato_seeds.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/ferru_seeds/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/fertilizer.png b/static/browse/industrial_craft_2/classic-1.7.10-6/fertilizer/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/fertilizer.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/fertilizer/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/filled_fuel_can.png b/static/browse/industrial_craft_2/classic-1.7.10-6/filled_fuel_can/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/filled_fuel_can.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/filled_fuel_can/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/filled_tin_can.png b/static/browse/industrial_craft_2/classic-1.7.10-6/filled_tin_can/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/filled_tin_can.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/filled_tin_can/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/frequency_transmitter.png b/static/browse/industrial_craft_2/classic-1.7.10-6/frequency_transmitter/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/frequency_transmitter.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/frequency_transmitter/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/generator.png b/static/browse/industrial_craft_2/classic-1.7.10-6/generator/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/generator.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/generator/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/geothermal_generator.png b/static/browse/industrial_craft_2/classic-1.7.10-6/geothermal_generator/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/geothermal_generator.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/geothermal_generator/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/glass_fibre_cable.png b/static/browse/industrial_craft_2/classic-1.7.10-6/glass_fibre_cable/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/glass_fibre_cable.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/glass_fibre_cable/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/gold_cable.png b/static/browse/industrial_craft_2/classic-1.7.10-6/gold_cable/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/gold_cable.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/gold_cable/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/gold_dust.png b/static/browse/industrial_craft_2/classic-1.7.10-6/gold_dust/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/gold_dust.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/gold_dust/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/grin_powder.png b/static/browse/industrial_craft_2/classic-1.7.10-6/grin_powder/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/grin_powder.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/grin_powder/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/h_coal_cell.png b/static/browse/industrial_craft_2/classic-1.7.10-6/h_coal_cell/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/h_coal_cell.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/h_coal_cell/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/hazmat_suit.png b/static/browse/industrial_craft_2/classic-1.7.10-6/hazmat_suit/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/hazmat_suit.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/hazmat_suit/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/hazmat_suit_leggings.png b/static/browse/industrial_craft_2/classic-1.7.10-6/hazmat_suit_leggings/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/hazmat_suit_leggings.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/hazmat_suit_leggings/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/heat_capacity_reactor_plating.png b/static/browse/industrial_craft_2/classic-1.7.10-6/heat_capacity_reactor_plating/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/heat_capacity_reactor_plating.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/heat_capacity_reactor_plating/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/heat_exchanger.png b/static/browse/industrial_craft_2/classic-1.7.10-6/heat_exchanger/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/heat_exchanger.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/heat_exchanger/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/heat_vent.png b/static/browse/industrial_craft_2/classic-1.7.10-6/heat_vent/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/heat_vent.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/heat_vent/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/heating_cell.png b/static/browse/industrial_craft_2/classic-1.7.10-6/heating_cell/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/heating_cell.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/heating_cell/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/hops.png b/static/browse/industrial_craft_2/classic-1.7.10-6/hops/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/hops.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/hops/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/pumpkin_seeds.png b/static/browse/industrial_craft_2/classic-1.7.10-6/hops_seeds/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/pumpkin_seeds.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/hops_seeds/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/hv_cable.png b/static/browse/industrial_craft_2/classic-1.7.10-6/hv_cable/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/hv_cable.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/hv_cable/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/hv_transformer.png b/static/browse/industrial_craft_2/classic-1.7.10-6/hv_transformer/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/hv_transformer.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/hv_transformer/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/hydrated_coal_dust.png b/static/browse/industrial_craft_2/classic-1.7.10-6/hydrated_coal_dust/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/hydrated_coal_dust.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/hydrated_coal_dust/icon.png diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/10k_coolant_cell.png b/static/browse/industrial_craft_2/classic-1.7.10-6/hydration_cell/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/10k_coolant_cell.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/hydration_cell/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/induction_furnace.png b/static/browse/industrial_craft_2/classic-1.7.10-6/induction_furnace/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/induction_furnace.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/induction_furnace/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/industrial_credit.png b/static/browse/industrial_craft_2/classic-1.7.10-6/industrial_credit/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/industrial_credit.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/industrial_credit/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/industrial_tnt.png b/static/browse/industrial_craft_2/classic-1.7.10-6/industrial_tnt/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/industrial_tnt.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/industrial_tnt/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/insulated_copper_cable.png b/static/browse/industrial_craft_2/classic-1.7.10-6/insulated_copper_cable/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/insulated_copper_cable.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/insulated_copper_cable/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/insulated_gold_cable.png b/static/browse/industrial_craft_2/classic-1.7.10-6/insulated_gold_cable/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/insulated_gold_cable.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/insulated_gold_cable/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/insulated_hv_cable.png b/static/browse/industrial_craft_2/classic-1.7.10-6/insulated_hv_cable/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/insulated_hv_cable.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/insulated_hv_cable/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/insulation_cutter.png b/static/browse/industrial_craft_2/classic-1.7.10-6/insulation_cutter/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/insulation_cutter.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/insulation_cutter/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/iridium_ore.png b/static/browse/industrial_craft_2/classic-1.7.10-6/iridium_ore/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/iridium_ore.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/iridium_ore/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/iridium_plate.png b/static/browse/industrial_craft_2/classic-1.7.10-6/iridium_plate/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/iridium_plate.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/iridium_plate/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/iron_dust.png b/static/browse/industrial_craft_2/classic-1.7.10-6/iron_dust/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/iron_dust.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/iron_dust/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/iron_fence.png b/static/browse/industrial_craft_2/classic-1.7.10-6/iron_fence/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/iron_fence.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/iron_fence/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/iron_furnace.png b/static/browse/industrial_craft_2/classic-1.7.10-6/iron_furnace/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/iron_furnace.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/iron_furnace/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/iron_scaffold.png b/static/browse/industrial_craft_2/classic-1.7.10-6/iron_scaffold/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/iron_scaffold.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/iron_scaffold/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/jetpack.png b/static/browse/industrial_craft_2/classic-1.7.10-6/jetpack/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/jetpack.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/jetpack/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/lapotron_crystal.png b/static/browse/industrial_craft_2/classic-1.7.10-6/lapotron_crystal/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/lapotron_crystal.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/lapotron_crystal/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/lappack.png b/static/browse/industrial_craft_2/classic-1.7.10-6/lappack/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/lappack.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/lappack/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/lava_cell.png b/static/browse/industrial_craft_2/classic-1.7.10-6/lava_cell/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/lava_cell.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/lava_cell/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/luminator.png b/static/browse/industrial_craft_2/classic-1.7.10-6/luminator/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/luminator.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/luminator/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/lv_transformer.png b/static/browse/industrial_craft_2/classic-1.7.10-6/lv_transformer/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/lv_transformer.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/lv_transformer/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/lzh_condensator.png b/static/browse/industrial_craft_2/classic-1.7.10-6/lzh_condensator/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/lzh_condensator.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/lzh_condensator/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/macerator.png b/static/browse/industrial_craft_2/classic-1.7.10-6/macerator/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/macerator.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/macerator/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/machine_block.png b/static/browse/industrial_craft_2/classic-1.7.10-6/machine_block/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/machine_block.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/machine_block/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/magnetizer.png b/static/browse/industrial_craft_2/classic-1.7.10-6/magnetizer/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/magnetizer.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/magnetizer/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/mass_fabricator.png b/static/browse/industrial_craft_2/classic-1.7.10-6/mass_fabricator/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/mass_fabricator.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/mass_fabricator/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/redwheat_seeds.png b/static/browse/industrial_craft_2/classic-1.7.10-6/melon_seeds/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/redwheat_seeds.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/melon_seeds/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/mfe.png b/static/browse/industrial_craft_2/classic-1.7.10-6/mfe/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/mfe.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/mfe/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/mfsu.png b/static/browse/industrial_craft_2/classic-1.7.10-6/mfsu/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/mfsu.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/mfsu/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/miner.png b/static/browse/industrial_craft_2/classic-1.7.10-6/miner/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/miner.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/miner/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/mining_drill.png b/static/browse/industrial_craft_2/classic-1.7.10-6/mining_drill/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/mining_drill.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/mining_drill/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/mining_laser.png b/static/browse/industrial_craft_2/classic-1.7.10-6/mining_laser/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/mining_laser.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/mining_laser/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/mining_pipe.png b/static/browse/industrial_craft_2/classic-1.7.10-6/mining_pipe/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/mining_pipe.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/mining_pipe/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/mixed_metal_ingot.png b/static/browse/industrial_craft_2/classic-1.7.10-6/mixed_metal_ingot/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/mixed_metal_ingot.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/mixed_metal_ingot/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/mv_transformer.png b/static/browse/industrial_craft_2/classic-1.7.10-6/mv_transformer/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/mv_transformer.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/mv_transformer/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/nano_saber.png b/static/browse/industrial_craft_2/classic-1.7.10-6/nano_saber/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/nano_saber.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/nano_saber/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/nanosuit_bodyarmor.png b/static/browse/industrial_craft_2/classic-1.7.10-6/nanosuit_bodyarmor/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/nanosuit_bodyarmor.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/nanosuit_bodyarmor/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/nanosuit_boots.png b/static/browse/industrial_craft_2/classic-1.7.10-6/nanosuit_boots/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/nanosuit_boots.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/nanosuit_boots/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/nanosuit_helmet.png b/static/browse/industrial_craft_2/classic-1.7.10-6/nanosuit_helmet/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/nanosuit_helmet.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/nanosuit_helmet/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/nanosuit_leggings.png b/static/browse/industrial_craft_2/classic-1.7.10-6/nanosuit_leggings/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/nanosuit_leggings.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/nanosuit_leggings/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/near_depleted_uranium_cell.png b/static/browse/industrial_craft_2/classic-1.7.10-6/near_depleted_uranium_cell/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/near_depleted_uranium_cell.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/near_depleted_uranium_cell/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/reed_seeds.png b/static/browse/industrial_craft_2/classic-1.7.10-6/nether_wart_seeds/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/reed_seeds.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/nether_wart_seeds/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/neutron_reflector.png b/static/browse/industrial_craft_2/classic-1.7.10-6/neutron_reflector/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/neutron_reflector.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/neutron_reflector/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/nuclear_reactor.png b/static/browse/industrial_craft_2/classic-1.7.10-6/nuclear_reactor/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/nuclear_reactor.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/nuclear_reactor/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/nuke.png b/static/browse/industrial_craft_2/classic-1.7.10-6/nuke/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/nuke.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/nuke/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/od_scanner.png b/static/browse/industrial_craft_2/classic-1.7.10-6/od_scanner/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/od_scanner.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/od_scanner/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/ov_scanner.png b/static/browse/industrial_craft_2/classic-1.7.10-6/ov_scanner/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/ov_scanner.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/ov_scanner/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/overclocked_heat_vent.png b/static/browse/industrial_craft_2/classic-1.7.10-6/overclocked_heat_vent/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/overclocked_heat_vent.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/overclocked_heat_vent/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/overclocker_upgrade.png b/static/browse/industrial_craft_2/classic-1.7.10-6/overclocker_upgrade/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/overclocker_upgrade.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/overclocker_upgrade/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/painter.png b/static/browse/industrial_craft_2/classic-1.7.10-6/painter/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/painter.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/painter/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/personal_safe.png b/static/browse/industrial_craft_2/classic-1.7.10-6/personal_safe/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/personal_safe.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/personal_safe/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/plantball.png b/static/browse/industrial_craft_2/classic-1.7.10-6/plantball/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/plantball.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/plantball/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/rose_seeds.png b/static/browse/industrial_craft_2/classic-1.7.10-6/potato_seeds/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/rose_seeds.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/potato_seeds/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/pump.png b/static/browse/industrial_craft_2/classic-1.7.10-6/pump/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/pump.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/pump/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/stickreed_seeds.png b/static/browse/industrial_craft_2/classic-1.7.10-6/pumpkin_seeds/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/stickreed_seeds.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/pumpkin_seeds/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/quad_uranium_cell.png b/static/browse/industrial_craft_2/classic-1.7.10-6/quad_uranium_cell/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/quad_uranium_cell.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/quad_uranium_cell/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/quantumsuit_bodyarmor.png b/static/browse/industrial_craft_2/classic-1.7.10-6/quantumsuit_bodyarmor/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/quantumsuit_bodyarmor.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/quantumsuit_bodyarmor/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/quantumsuit_boots.png b/static/browse/industrial_craft_2/classic-1.7.10-6/quantumsuit_boots/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/quantumsuit_boots.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/quantumsuit_boots/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/quantumsuit_helmet.png b/static/browse/industrial_craft_2/classic-1.7.10-6/quantumsuit_helmet/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/quantumsuit_helmet.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/quantumsuit_helmet/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/quantumsuit_leggings.png b/static/browse/industrial_craft_2/classic-1.7.10-6/quantumsuit_leggings/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/quantumsuit_leggings.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/quantumsuit_leggings/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/raw_carbon_fibre.png b/static/browse/industrial_craft_2/classic-1.7.10-6/raw_carbon_fibre/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/raw_carbon_fibre.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/raw_carbon_fibre/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/raw_carbon_mesh.png b/static/browse/industrial_craft_2/classic-1.7.10-6/raw_carbon_mesh/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/raw_carbon_mesh.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/raw_carbon_mesh/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/re_battery.png b/static/browse/industrial_craft_2/classic-1.7.10-6/re_battery/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/re_battery.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/re_battery/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/re_enriched_uranium_cell.png b/static/browse/industrial_craft_2/classic-1.7.10-6/re_enriched_uranium_cell/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/re_enriched_uranium_cell.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/re_enriched_uranium_cell/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/reactor_chamber.png b/static/browse/industrial_craft_2/classic-1.7.10-6/reactor_chamber/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/reactor_chamber.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/reactor_chamber/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/reactor_heat_exchanger.png b/static/browse/industrial_craft_2/classic-1.7.10-6/reactor_heat_exchanger/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/reactor_heat_exchanger.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/reactor_heat_exchanger/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/reactor_heat_vent.png b/static/browse/industrial_craft_2/classic-1.7.10-6/reactor_heat_vent/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/reactor_heat_vent.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/reactor_heat_vent/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/reactor_plating.png b/static/browse/industrial_craft_2/classic-1.7.10-6/reactor_plating/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/reactor_plating.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/reactor_plating/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/recycler.png b/static/browse/industrial_craft_2/classic-1.7.10-6/recycler/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/recycler.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/recycler/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/terra_wart_seeds.png b/static/browse/industrial_craft_2/classic-1.7.10-6/redwheat_seeds/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/terra_wart_seeds.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/redwheat_seeds/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/tulip_seeds.png b/static/browse/industrial_craft_2/classic-1.7.10-6/reed_seeds/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/tulip_seeds.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/reed_seeds/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/refined_iron.png b/static/browse/industrial_craft_2/classic-1.7.10-6/refined_iron/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/refined_iron.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/refined_iron/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/refined_uranium.png b/static/browse/industrial_craft_2/classic-1.7.10-6/refined_uranium/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/refined_uranium.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/refined_uranium/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/reinforced_door.png b/static/browse/industrial_craft_2/classic-1.7.10-6/reinforced_door/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/reinforced_door.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/reinforced_door/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/reinforced_glass.png b/static/browse/industrial_craft_2/classic-1.7.10-6/reinforced_glass/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/reinforced_glass.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/reinforced_glass/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/reinforced_stone.png b/static/browse/industrial_craft_2/classic-1.7.10-6/reinforced_stone/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/reinforced_stone.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/reinforced_stone/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/venomilia_seeds.png b/static/browse/industrial_craft_2/classic-1.7.10-6/rose_seeds/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/venomilia_seeds.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/rose_seeds/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/rsh_condensator.png b/static/browse/industrial_craft_2/classic-1.7.10-6/rsh_condensator/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/rsh_condensator.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/rsh_condensator/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/rubber.png b/static/browse/industrial_craft_2/classic-1.7.10-6/rubber/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/rubber.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/rubber/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/rubber_boots.png b/static/browse/industrial_craft_2/classic-1.7.10-6/rubber_boots/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/rubber_boots.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/rubber_boots/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/rubber_sheet.png b/static/browse/industrial_craft_2/classic-1.7.10-6/rubber_sheet/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/rubber_sheet.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/rubber_sheet/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/rubber_tree_sapling.png b/static/browse/industrial_craft_2/classic-1.7.10-6/rubber_tree_sapling/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/rubber_tree_sapling.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/rubber_tree_sapling/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/rubber_wood.png b/static/browse/industrial_craft_2/classic-1.7.10-6/rubber_wood/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/rubber_wood.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/rubber_wood/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/scaffold.png b/static/browse/industrial_craft_2/classic-1.7.10-6/scaffold/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/scaffold.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/scaffold/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/scrap.png b/static/browse/industrial_craft_2/classic-1.7.10-6/scrap/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/scrap.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/scrap/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/scrap_box.png b/static/browse/industrial_craft_2/classic-1.7.10-6/scrap_box/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/scrap_box.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/scrap_box/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/scuba_helmet.png b/static/browse/industrial_craft_2/classic-1.7.10-6/scuba_helmet/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/scuba_helmet.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/scuba_helmet/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/single_use_battery.png b/static/browse/industrial_craft_2/classic-1.7.10-6/single_use_battery/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/single_use_battery.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/single_use_battery/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/small_pile_of_iron_dust.png b/static/browse/industrial_craft_2/classic-1.7.10-6/small_pile_of_iron_dust/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/small_pile_of_iron_dust.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/small_pile_of_iron_dust/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/solar_helmet.png b/static/browse/industrial_craft_2/classic-1.7.10-6/solar_helmet/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/solar_helmet.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/solar_helmet/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/solar_panel.png b/static/browse/industrial_craft_2/classic-1.7.10-6/solar_panel/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/solar_panel.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/solar_panel/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/static_boots.png b/static/browse/industrial_craft_2/classic-1.7.10-6/static_boots/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/static_boots.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/static_boots/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/weed_seeds.png b/static/browse/industrial_craft_2/classic-1.7.10-6/stickreed_seeds/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/weed_seeds.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/stickreed_seeds/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/sticky_dynamite.png b/static/browse/industrial_craft_2/classic-1.7.10-6/sticky_dynamite/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/sticky_dynamite.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/sticky_dynamite/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/sticky_resin.png b/static/browse/industrial_craft_2/classic-1.7.10-6/sticky_resin/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/sticky_resin.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/sticky_resin/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/stone_mug.png b/static/browse/industrial_craft_2/classic-1.7.10-6/stone_mug/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/stone_mug.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/stone_mug/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/teleporter.png b/static/browse/industrial_craft_2/classic-1.7.10-6/teleporter/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/teleporter.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/teleporter/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/terra_wart.png b/static/browse/industrial_craft_2/classic-1.7.10-6/terra_wart/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/terra_wart.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/terra_wart/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/wheat_seeds.png b/static/browse/industrial_craft_2/classic-1.7.10-6/terra_wart_seeds/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/wheat_seeds.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/terra_wart_seeds/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/terraformer.png b/static/browse/industrial_craft_2/classic-1.7.10-6/terraformer/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/terraformer.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/terraformer/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/tesla_coil.png b/static/browse/industrial_craft_2/classic-1.7.10-6/tesla_coil/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/tesla_coil.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/tesla_coil/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/tfbp_chilling.png b/static/browse/industrial_craft_2/classic-1.7.10-6/tfbp_chilling/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/tfbp_chilling.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/tfbp_chilling/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/tfbp_cultivation.png b/static/browse/industrial_craft_2/classic-1.7.10-6/tfbp_cultivation/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/tfbp_cultivation.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/tfbp_cultivation/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/tfbp_desertification.png b/static/browse/industrial_craft_2/classic-1.7.10-6/tfbp_desertification/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/tfbp_desertification.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/tfbp_desertification/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/tfbp_empty.png b/static/browse/industrial_craft_2/classic-1.7.10-6/tfbp_empty/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/tfbp_empty.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/tfbp_empty/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/tfbp_flatification.png b/static/browse/industrial_craft_2/classic-1.7.10-6/tfbp_flatification/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/tfbp_flatification.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/tfbp_flatification/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/tfbp_irrigation.png b/static/browse/industrial_craft_2/classic-1.7.10-6/tfbp_irrigation/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/tfbp_irrigation.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/tfbp_irrigation/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/thick_neutron_reflector.png b/static/browse/industrial_craft_2/classic-1.7.10-6/thick_neutron_reflector/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/thick_neutron_reflector.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/thick_neutron_reflector/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/tin_block.png b/static/browse/industrial_craft_2/classic-1.7.10-6/tin_block/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/tin_block.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/tin_block/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/tin_can.png b/static/browse/industrial_craft_2/classic-1.7.10-6/tin_can/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/tin_can.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/tin_can/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/tin_dust.png b/static/browse/industrial_craft_2/classic-1.7.10-6/tin_dust/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/tin_dust.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/tin_dust/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/tin_ingot.png b/static/browse/industrial_craft_2/classic-1.7.10-6/tin_ingot/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/tin_ingot.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/tin_ingot/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/tin_ore.png b/static/browse/industrial_craft_2/classic-1.7.10-6/tin_ore/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/tin_ore.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/tin_ore/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/tool_box.png b/static/browse/industrial_craft_2/classic-1.7.10-6/tool_box/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/tool_box.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/tool_box/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/trade_o_mat.png b/static/browse/industrial_craft_2/classic-1.7.10-6/trade_o_mat/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/trade_o_mat.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/trade_o_mat/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/transformer_upgrade.png b/static/browse/industrial_craft_2/classic-1.7.10-6/transformer_upgrade/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/transformer_upgrade.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/transformer_upgrade/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/treetap.png b/static/browse/industrial_craft_2/classic-1.7.10-6/treetap/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/treetap.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/treetap/icon.png diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/aurelia_seeds.png b/static/browse/industrial_craft_2/classic-1.7.10-6/tulip_seeds/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/aurelia_seeds.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/tulip_seeds/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/ultra_low_current_cable.png b/static/browse/industrial_craft_2/classic-1.7.10-6/ultra_low_current_cable/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/ultra_low_current_cable.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/ultra_low_current_cable/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/uranium.png b/static/browse/industrial_craft_2/classic-1.7.10-6/uranium/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/uranium.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/uranium/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/uranium_block.png b/static/browse/industrial_craft_2/classic-1.7.10-6/uranium_block/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/uranium_block.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/uranium_block/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/uranium_cell.png b/static/browse/industrial_craft_2/classic-1.7.10-6/uranium_cell/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/uranium_cell.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/uranium_cell/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/uranium_ore.png b/static/browse/industrial_craft_2/classic-1.7.10-6/uranium_ore/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/uranium_ore.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/uranium_ore/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/uu_matter.png b/static/browse/industrial_craft_2/classic-1.7.10-6/uu_matter/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/uu_matter.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/uu_matter/icon.png diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/blackthorn_seeds.png b/static/browse/industrial_craft_2/classic-1.7.10-6/venomilia_seeds/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/blackthorn_seeds.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/venomilia_seeds/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/water_cell.png b/static/browse/industrial_craft_2/classic-1.7.10-6/water_cell/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/water_cell.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/water_cell/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/water_mill.png b/static/browse/industrial_craft_2/classic-1.7.10-6/water_mill/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/water_mill.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/water_mill/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/weed_ex.png b/static/browse/industrial_craft_2/classic-1.7.10-6/weed_ex/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/weed_ex.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/weed_ex/icon.png diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/brownmushroom_seeds.png b/static/browse/industrial_craft_2/classic-1.7.10-6/weed_seeds/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/brownmushroom_seeds.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/weed_seeds/icon.png diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/carrots_seeds.png b/static/browse/industrial_craft_2/classic-1.7.10-6/wheat_seeds/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/carrots_seeds.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/wheat_seeds/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/wind_mill.png b/static/browse/industrial_craft_2/classic-1.7.10-6/wind_mill/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/wind_mill.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/wind_mill/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/wrench.png b/static/browse/industrial_craft_2/classic-1.7.10-6/wrench/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/wrench.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/wrench/icon.png diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/images/zero.png b/static/browse/industrial_craft_2/classic-1.7.10-6/zero/icon.png similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/images/zero.png rename to static/browse/industrial_craft_2/classic-1.7.10-6/zero/icon.png diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/clay_dust.png b/static/browse/industrial_craft_2/clay_dust/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/clay_dust.png rename to static/browse/industrial_craft_2/clay_dust/icon.png diff --git a/prerender/browse/industrial_craft_2/clay_dust/index.html b/static/browse/industrial_craft_2/clay_dust/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/clay_dust/index.html rename to static/browse/industrial_craft_2/clay_dust/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/coal_ball.png b/static/browse/industrial_craft_2/coal_ball/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/coal_ball.png rename to static/browse/industrial_craft_2/coal_ball/icon.png diff --git a/prerender/browse/industrial_craft_2/coal_ball/index.html b/static/browse/industrial_craft_2/coal_ball/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/coal_ball/index.html rename to static/browse/industrial_craft_2/coal_ball/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/coal_chunk.png b/static/browse/industrial_craft_2/coal_chunk/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/coal_chunk.png rename to static/browse/industrial_craft_2/coal_chunk/icon.png diff --git a/prerender/browse/industrial_craft_2/coal_chunk/index.html b/static/browse/industrial_craft_2/coal_chunk/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/coal_chunk/index.html rename to static/browse/industrial_craft_2/coal_chunk/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/coal_dust.png b/static/browse/industrial_craft_2/coal_dust/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/coal_dust.png rename to static/browse/industrial_craft_2/coal_dust/icon.png diff --git a/prerender/browse/industrial_craft_2/coal_dust/index.html b/static/browse/industrial_craft_2/coal_dust/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/coal_dust/index.html rename to static/browse/industrial_craft_2/coal_dust/index.html diff --git a/prerender/browse/industrial_craft_2/coalfuel_cell/index.html b/static/browse/industrial_craft_2/coalfuel_cell/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/coalfuel_cell/index.html rename to static/browse/industrial_craft_2/coalfuel_cell/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/cocoa_seeds.png b/static/browse/industrial_craft_2/cocoa_seeds/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/cocoa_seeds.png rename to static/browse/industrial_craft_2/cocoa_seeds/icon.png diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/coffee.png b/static/browse/industrial_craft_2/coffee/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/coffee.png rename to static/browse/industrial_craft_2/coffee/icon.png diff --git a/prerender/browse/industrial_craft_2/coffee/index.html b/static/browse/industrial_craft_2/coffee/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/coffee/index.html rename to static/browse/industrial_craft_2/coffee/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/coffee_beans.png b/static/browse/industrial_craft_2/coffee_beans/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/coffee_beans.png rename to static/browse/industrial_craft_2/coffee_beans/icon.png diff --git a/prerender/browse/industrial_craft_2/coffee_beans/index.html b/static/browse/industrial_craft_2/coffee_beans/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/coffee_beans/index.html rename to static/browse/industrial_craft_2/coffee_beans/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/coffee_powder.png b/static/browse/industrial_craft_2/coffee_powder/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/coffee_powder.png rename to static/browse/industrial_craft_2/coffee_powder/icon.png diff --git a/prerender/browse/industrial_craft_2/coffee_powder/index.html b/static/browse/industrial_craft_2/coffee_powder/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/coffee_powder/index.html rename to static/browse/industrial_craft_2/coffee_powder/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/coffee_seeds.png b/static/browse/industrial_craft_2/coffee_seeds/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/coffee_seeds.png rename to static/browse/industrial_craft_2/coffee_seeds/icon.png diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/coil.png b/static/browse/industrial_craft_2/coil/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/coil.png rename to static/browse/industrial_craft_2/coil/icon.png diff --git a/prerender/browse/industrial_craft_2/coil/index.html b/static/browse/industrial_craft_2/coil/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/coil/index.html rename to static/browse/industrial_craft_2/coil/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/cold_coffee.png b/static/browse/industrial_craft_2/cold_coffee/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/cold_coffee.png rename to static/browse/industrial_craft_2/cold_coffee/icon.png diff --git a/prerender/browse/industrial_craft_2/cold_coffee/index.html b/static/browse/industrial_craft_2/cold_coffee/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/cold_coffee/index.html rename to static/browse/industrial_craft_2/cold_coffee/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/component_heat_exchanger.png b/static/browse/industrial_craft_2/component_heat_exchanger/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/component_heat_exchanger.png rename to static/browse/industrial_craft_2/component_heat_exchanger/icon.png diff --git a/prerender/browse/industrial_craft_2/component_heat_exchanger/index.html b/static/browse/industrial_craft_2/component_heat_exchanger/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/component_heat_exchanger/index.html rename to static/browse/industrial_craft_2/component_heat_exchanger/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/component_heat_vent.png b/static/browse/industrial_craft_2/component_heat_vent/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/component_heat_vent.png rename to static/browse/industrial_craft_2/component_heat_vent/icon.png diff --git a/prerender/browse/industrial_craft_2/component_heat_vent/index.html b/static/browse/industrial_craft_2/component_heat_vent/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/component_heat_vent/index.html rename to static/browse/industrial_craft_2/component_heat_vent/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/composite_vest.png b/static/browse/industrial_craft_2/composite_vest/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/composite_vest.png rename to static/browse/industrial_craft_2/composite_vest/icon.png diff --git a/prerender/browse/industrial_craft_2/composite_vest/index.html b/static/browse/industrial_craft_2/composite_vest/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/composite_vest/index.html rename to static/browse/industrial_craft_2/composite_vest/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/compressed_air_cell.png b/static/browse/industrial_craft_2/compressed_air_cell/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/compressed_air_cell.png rename to static/browse/industrial_craft_2/compressed_air_cell/icon.png diff --git a/prerender/browse/industrial_craft_2/compressed_air_cell/index.html b/static/browse/industrial_craft_2/compressed_air_cell/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/compressed_air_cell/index.html rename to static/browse/industrial_craft_2/compressed_air_cell/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/compressed_coal_ball.png b/static/browse/industrial_craft_2/compressed_coal_ball/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/compressed_coal_ball.png rename to static/browse/industrial_craft_2/compressed_coal_ball/icon.png diff --git a/prerender/browse/industrial_craft_2/compressed_coal_ball/index.html b/static/browse/industrial_craft_2/compressed_coal_ball/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/compressed_coal_ball/index.html rename to static/browse/industrial_craft_2/compressed_coal_ball/index.html diff --git a/prerender/browse/industrial_craft_2/compressed_hyd_coalclump/index.html b/static/browse/industrial_craft_2/compressed_hyd_coalclump/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/compressed_hyd_coalclump/index.html rename to static/browse/industrial_craft_2/compressed_hyd_coalclump/index.html diff --git a/prerender/browse/industrial_craft_2/compressed_plants/index.html b/static/browse/industrial_craft_2/compressed_plants/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/compressed_plants/index.html rename to static/browse/industrial_craft_2/compressed_plants/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/compressor.png b/static/browse/industrial_craft_2/compressor/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/compressor.png rename to static/browse/industrial_craft_2/compressor/icon.png diff --git a/prerender/browse/industrial_craft_2/compressor/index.html b/static/browse/industrial_craft_2/compressor/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/compressor/index.html rename to static/browse/industrial_craft_2/compressor/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/condenser.png b/static/browse/industrial_craft_2/condenser/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/condenser.png rename to static/browse/industrial_craft_2/condenser/icon.png diff --git a/prerender/browse/industrial_craft_2/condenser/index.html b/static/browse/industrial_craft_2/condenser/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/condenser/index.html rename to static/browse/industrial_craft_2/condenser/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/construction_foam.png b/static/browse/industrial_craft_2/construction_foam/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/construction_foam.png rename to static/browse/industrial_craft_2/construction_foam/icon.png diff --git a/prerender/browse/industrial_craft_2/construction_foam/index.html b/static/browse/industrial_craft_2/construction_foam/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/construction_foam/index.html rename to static/browse/industrial_craft_2/construction_foam/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/construction_foam_2.png b/static/browse/industrial_craft_2/construction_foam_2/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/construction_foam_2.png rename to static/browse/industrial_craft_2/construction_foam_2/icon.png diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/construction_foam_cell.png b/static/browse/industrial_craft_2/construction_foam_cell/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/construction_foam_cell.png rename to static/browse/industrial_craft_2/construction_foam_cell/icon.png diff --git a/prerender/browse/industrial_craft_2/construction_foam_cell/index.html b/static/browse/industrial_craft_2/construction_foam_cell/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/construction_foam_cell/index.html rename to static/browse/industrial_craft_2/construction_foam_cell/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/containment_box.png b/static/browse/industrial_craft_2/containment_box/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/containment_box.png rename to static/browse/industrial_craft_2/containment_box/icon.png diff --git a/prerender/browse/industrial_craft_2/containment_box/index.html b/static/browse/industrial_craft_2/containment_box/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/containment_box/index.html rename to static/browse/industrial_craft_2/containment_box/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/containment_reactor_plating.png b/static/browse/industrial_craft_2/containment_reactor_plating/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/containment_reactor_plating.png rename to static/browse/industrial_craft_2/containment_reactor_plating/icon.png diff --git a/prerender/browse/industrial_craft_2/containment_reactor_plating/index.html b/static/browse/industrial_craft_2/containment_reactor_plating/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/containment_reactor_plating/index.html rename to static/browse/industrial_craft_2/containment_reactor_plating/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/coolant_cell.png b/static/browse/industrial_craft_2/coolant_cell/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/coolant_cell.png rename to static/browse/industrial_craft_2/coolant_cell/icon.png diff --git a/prerender/browse/industrial_craft_2/coolant_cell/index.html b/static/browse/industrial_craft_2/coolant_cell/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/coolant_cell/index.html rename to static/browse/industrial_craft_2/coolant_cell/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/copper_block.png b/static/browse/industrial_craft_2/copper_block/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/copper_block.png rename to static/browse/industrial_craft_2/copper_block/icon.png diff --git a/prerender/browse/industrial_craft_2/copper_block/index.html b/static/browse/industrial_craft_2/copper_block/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/copper_block/index.html rename to static/browse/industrial_craft_2/copper_block/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/copper_boiler.png b/static/browse/industrial_craft_2/copper_boiler/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/copper_boiler.png rename to static/browse/industrial_craft_2/copper_boiler/icon.png diff --git a/prerender/browse/industrial_craft_2/copper_boiler/index.html b/static/browse/industrial_craft_2/copper_boiler/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/copper_boiler/index.html rename to static/browse/industrial_craft_2/copper_boiler/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/copper_cable.png b/static/browse/industrial_craft_2/copper_cable/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/copper_cable.png rename to static/browse/industrial_craft_2/copper_cable/icon.png diff --git a/prerender/browse/industrial_craft_2/copper_cable/index.html b/static/browse/industrial_craft_2/copper_cable/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/copper_cable/index.html rename to static/browse/industrial_craft_2/copper_cable/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/copper_dust.png b/static/browse/industrial_craft_2/copper_dust/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/copper_dust.png rename to static/browse/industrial_craft_2/copper_dust/icon.png diff --git a/prerender/browse/industrial_craft_2/copper_dust/index.html b/static/browse/industrial_craft_2/copper_dust/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/copper_dust/index.html rename to static/browse/industrial_craft_2/copper_dust/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/copper_ingot.png b/static/browse/industrial_craft_2/copper_ingot/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/copper_ingot.png rename to static/browse/industrial_craft_2/copper_ingot/icon.png diff --git a/prerender/browse/industrial_craft_2/copper_ingot/index.html b/static/browse/industrial_craft_2/copper_ingot/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/copper_ingot/index.html rename to static/browse/industrial_craft_2/copper_ingot/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/copper_item_casing.png b/static/browse/industrial_craft_2/copper_item_casing/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/copper_item_casing.png rename to static/browse/industrial_craft_2/copper_item_casing/icon.png diff --git a/prerender/browse/industrial_craft_2/copper_item_casing/index.html b/static/browse/industrial_craft_2/copper_item_casing/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/copper_item_casing/index.html rename to static/browse/industrial_craft_2/copper_item_casing/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/copper_ore.png b/static/browse/industrial_craft_2/copper_ore/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/copper_ore.png rename to static/browse/industrial_craft_2/copper_ore/icon.png diff --git a/prerender/browse/industrial_craft_2/copper_ore/index.html b/static/browse/industrial_craft_2/copper_ore/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/copper_ore/index.html rename to static/browse/industrial_craft_2/copper_ore/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/copper_plate.png b/static/browse/industrial_craft_2/copper_plate/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/copper_plate.png rename to static/browse/industrial_craft_2/copper_plate/icon.png diff --git a/prerender/browse/industrial_craft_2/copper_plate/index.html b/static/browse/industrial_craft_2/copper_plate/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/copper_plate/index.html rename to static/browse/industrial_craft_2/copper_plate/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/crop.png b/static/browse/industrial_craft_2/crop/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/crop.png rename to static/browse/industrial_craft_2/crop/icon.png diff --git a/prerender/browse/industrial_craft_2/crop/index.html b/static/browse/industrial_craft_2/crop/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/crop/index.html rename to static/browse/industrial_craft_2/crop/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/crop_harvester.png b/static/browse/industrial_craft_2/crop_harvester/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/crop_harvester.png rename to static/browse/industrial_craft_2/crop_harvester/icon.png diff --git a/prerender/browse/industrial_craft_2/crop_harvester/index.html b/static/browse/industrial_craft_2/crop_harvester/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/crop_harvester/index.html rename to static/browse/industrial_craft_2/crop_harvester/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/crop_matron.png b/static/browse/industrial_craft_2/crop_matron/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/crop_matron.png rename to static/browse/industrial_craft_2/crop_matron/icon.png diff --git a/prerender/browse/industrial_craft_2/crop_matron/index.html b/static/browse/industrial_craft_2/crop_matron/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/crop_matron/index.html rename to static/browse/industrial_craft_2/crop_matron/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/cropnalyzer.png b/static/browse/industrial_craft_2/cropnalyzer/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/cropnalyzer.png rename to static/browse/industrial_craft_2/cropnalyzer/icon.png diff --git a/prerender/browse/industrial_craft_2/cropnalyzer/index.html b/static/browse/industrial_craft_2/cropnalyzer/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/cropnalyzer/index.html rename to static/browse/industrial_craft_2/cropnalyzer/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/crushed_copper_ore.png b/static/browse/industrial_craft_2/crushed_copper_ore/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/crushed_copper_ore.png rename to static/browse/industrial_craft_2/crushed_copper_ore/icon.png diff --git a/prerender/browse/industrial_craft_2/crushed_copper_ore/index.html b/static/browse/industrial_craft_2/crushed_copper_ore/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/crushed_copper_ore/index.html rename to static/browse/industrial_craft_2/crushed_copper_ore/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/crushed_gold_ore.png b/static/browse/industrial_craft_2/crushed_gold_ore/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/crushed_gold_ore.png rename to static/browse/industrial_craft_2/crushed_gold_ore/icon.png diff --git a/prerender/browse/industrial_craft_2/crushed_gold_ore/index.html b/static/browse/industrial_craft_2/crushed_gold_ore/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/crushed_gold_ore/index.html rename to static/browse/industrial_craft_2/crushed_gold_ore/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/crushed_iron_ore.png b/static/browse/industrial_craft_2/crushed_iron_ore/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/crushed_iron_ore.png rename to static/browse/industrial_craft_2/crushed_iron_ore/icon.png diff --git a/prerender/browse/industrial_craft_2/crushed_iron_ore/index.html b/static/browse/industrial_craft_2/crushed_iron_ore/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/crushed_iron_ore/index.html rename to static/browse/industrial_craft_2/crushed_iron_ore/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/crushed_lead_ore.png b/static/browse/industrial_craft_2/crushed_lead_ore/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/crushed_lead_ore.png rename to static/browse/industrial_craft_2/crushed_lead_ore/icon.png diff --git a/prerender/browse/industrial_craft_2/crushed_lead_ore/index.html b/static/browse/industrial_craft_2/crushed_lead_ore/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/crushed_lead_ore/index.html rename to static/browse/industrial_craft_2/crushed_lead_ore/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/crushed_silver_ore.png b/static/browse/industrial_craft_2/crushed_silver_ore/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/crushed_silver_ore.png rename to static/browse/industrial_craft_2/crushed_silver_ore/icon.png diff --git a/prerender/browse/industrial_craft_2/crushed_silver_ore/index.html b/static/browse/industrial_craft_2/crushed_silver_ore/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/crushed_silver_ore/index.html rename to static/browse/industrial_craft_2/crushed_silver_ore/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/crushed_tin_ore.png b/static/browse/industrial_craft_2/crushed_tin_ore/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/crushed_tin_ore.png rename to static/browse/industrial_craft_2/crushed_tin_ore/icon.png diff --git a/prerender/browse/industrial_craft_2/crushed_tin_ore/index.html b/static/browse/industrial_craft_2/crushed_tin_ore/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/crushed_tin_ore/index.html rename to static/browse/industrial_craft_2/crushed_tin_ore/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/crushed_uranium_ore.png b/static/browse/industrial_craft_2/crushed_uranium_ore/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/crushed_uranium_ore.png rename to static/browse/industrial_craft_2/crushed_uranium_ore/icon.png diff --git a/prerender/browse/industrial_craft_2/crushed_uranium_ore/index.html b/static/browse/industrial_craft_2/crushed_uranium_ore/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/crushed_uranium_ore/index.html rename to static/browse/industrial_craft_2/crushed_uranium_ore/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/crystal_memory.png b/static/browse/industrial_craft_2/crystal_memory/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/crystal_memory.png rename to static/browse/industrial_craft_2/crystal_memory/icon.png diff --git a/prerender/browse/industrial_craft_2/crystal_memory/index.html b/static/browse/industrial_craft_2/crystal_memory/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/crystal_memory/index.html rename to static/browse/industrial_craft_2/crystal_memory/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/crystal_memory_raw.png b/static/browse/industrial_craft_2/crystal_memory_raw/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/crystal_memory_raw.png rename to static/browse/industrial_craft_2/crystal_memory_raw/icon.png diff --git a/prerender/browse/industrial_craft_2/crystal_memory_raw/index.html b/static/browse/industrial_craft_2/crystal_memory_raw/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/crystal_memory_raw/index.html rename to static/browse/industrial_craft_2/crystal_memory_raw/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/cutter.png b/static/browse/industrial_craft_2/cutter/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/cutter.png rename to static/browse/industrial_craft_2/cutter/icon.png diff --git a/prerender/browse/industrial_craft_2/cutter/index.html b/static/browse/industrial_craft_2/cutter/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/cutter/index.html rename to static/browse/industrial_craft_2/cutter/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/cyan_painter.png b/static/browse/industrial_craft_2/cyan_painter/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/cyan_painter.png rename to static/browse/industrial_craft_2/cyan_painter/icon.png diff --git a/prerender/browse/industrial_craft_2/cyan_painter/index.html b/static/browse/industrial_craft_2/cyan_painter/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/cyan_painter/index.html rename to static/browse/industrial_craft_2/cyan_painter/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/cyazint_seeds.png b/static/browse/industrial_craft_2/cyazint_seeds/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/cyazint_seeds.png rename to static/browse/industrial_craft_2/cyazint_seeds/icon.png diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/damaged_rubber_dinghy.png b/static/browse/industrial_craft_2/damaged_rubber_dinghy/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/damaged_rubber_dinghy.png rename to static/browse/industrial_craft_2/damaged_rubber_dinghy/icon.png diff --git a/prerender/browse/industrial_craft_2/damaged_rubber_dinghy/index.html b/static/browse/industrial_craft_2/damaged_rubber_dinghy/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/damaged_rubber_dinghy/index.html rename to static/browse/industrial_craft_2/damaged_rubber_dinghy/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/dandelion_seeds.png b/static/browse/industrial_craft_2/dandelion_seeds/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/dandelion_seeds.png rename to static/browse/industrial_craft_2/dandelion_seeds/icon.png diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/dark_coffee.png b/static/browse/industrial_craft_2/dark_coffee/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/dark_coffee.png rename to static/browse/industrial_craft_2/dark_coffee/icon.png diff --git a/prerender/browse/industrial_craft_2/dark_coffee/index.html b/static/browse/industrial_craft_2/dark_coffee/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/dark_coffee/index.html rename to static/browse/industrial_craft_2/dark_coffee/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/dark_grey_painter.png b/static/browse/industrial_craft_2/dark_grey_painter/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/dark_grey_painter.png rename to static/browse/industrial_craft_2/dark_grey_painter/icon.png diff --git a/prerender/browse/industrial_craft_2/dark_grey_painter/index.html b/static/browse/industrial_craft_2/dark_grey_painter/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/dark_grey_painter/index.html rename to static/browse/industrial_craft_2/dark_grey_painter/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/debug_item.png b/static/browse/industrial_craft_2/debug_item/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/debug_item.png rename to static/browse/industrial_craft_2/debug_item/icon.png diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/dense_bronze_plate.png b/static/browse/industrial_craft_2/dense_bronze_plate/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/dense_bronze_plate.png rename to static/browse/industrial_craft_2/dense_bronze_plate/icon.png diff --git a/prerender/browse/industrial_craft_2/dense_bronze_plate/index.html b/static/browse/industrial_craft_2/dense_bronze_plate/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/dense_bronze_plate/index.html rename to static/browse/industrial_craft_2/dense_bronze_plate/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/dense_copper_plate.png b/static/browse/industrial_craft_2/dense_copper_plate/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/dense_copper_plate.png rename to static/browse/industrial_craft_2/dense_copper_plate/icon.png diff --git a/prerender/browse/industrial_craft_2/dense_copper_plate/index.html b/static/browse/industrial_craft_2/dense_copper_plate/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/dense_copper_plate/index.html rename to static/browse/industrial_craft_2/dense_copper_plate/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/dense_gold_plate.png b/static/browse/industrial_craft_2/dense_gold_plate/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/dense_gold_plate.png rename to static/browse/industrial_craft_2/dense_gold_plate/icon.png diff --git a/prerender/browse/industrial_craft_2/dense_gold_plate/index.html b/static/browse/industrial_craft_2/dense_gold_plate/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/dense_gold_plate/index.html rename to static/browse/industrial_craft_2/dense_gold_plate/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/dense_iron_plate.png b/static/browse/industrial_craft_2/dense_iron_plate/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/dense_iron_plate.png rename to static/browse/industrial_craft_2/dense_iron_plate/icon.png diff --git a/prerender/browse/industrial_craft_2/dense_iron_plate/index.html b/static/browse/industrial_craft_2/dense_iron_plate/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/dense_iron_plate/index.html rename to static/browse/industrial_craft_2/dense_iron_plate/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/dense_lapis_lazuli_plate.png b/static/browse/industrial_craft_2/dense_lapis_lazuli_plate/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/dense_lapis_lazuli_plate.png rename to static/browse/industrial_craft_2/dense_lapis_lazuli_plate/icon.png diff --git a/prerender/browse/industrial_craft_2/dense_lapis_lazuli_plate/index.html b/static/browse/industrial_craft_2/dense_lapis_lazuli_plate/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/dense_lapis_lazuli_plate/index.html rename to static/browse/industrial_craft_2/dense_lapis_lazuli_plate/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/dense_lead_plate.png b/static/browse/industrial_craft_2/dense_lead_plate/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/dense_lead_plate.png rename to static/browse/industrial_craft_2/dense_lead_plate/icon.png diff --git a/prerender/browse/industrial_craft_2/dense_lead_plate/index.html b/static/browse/industrial_craft_2/dense_lead_plate/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/dense_lead_plate/index.html rename to static/browse/industrial_craft_2/dense_lead_plate/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/dense_obsidian_plate.png b/static/browse/industrial_craft_2/dense_obsidian_plate/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/dense_obsidian_plate.png rename to static/browse/industrial_craft_2/dense_obsidian_plate/icon.png diff --git a/prerender/browse/industrial_craft_2/dense_obsidian_plate/index.html b/static/browse/industrial_craft_2/dense_obsidian_plate/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/dense_obsidian_plate/index.html rename to static/browse/industrial_craft_2/dense_obsidian_plate/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/dense_refined_iron_plate.png b/static/browse/industrial_craft_2/dense_refined_iron_plate/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/dense_refined_iron_plate.png rename to static/browse/industrial_craft_2/dense_refined_iron_plate/icon.png diff --git a/prerender/browse/industrial_craft_2/dense_refined_iron_plate/index.html b/static/browse/industrial_craft_2/dense_refined_iron_plate/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/dense_refined_iron_plate/index.html rename to static/browse/industrial_craft_2/dense_refined_iron_plate/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/dense_tin_plate.png b/static/browse/industrial_craft_2/dense_tin_plate/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/dense_tin_plate.png rename to static/browse/industrial_craft_2/dense_tin_plate/icon.png diff --git a/prerender/browse/industrial_craft_2/dense_tin_plate/index.html b/static/browse/industrial_craft_2/dense_tin_plate/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/dense_tin_plate/index.html rename to static/browse/industrial_craft_2/dense_tin_plate/index.html diff --git a/prerender/browse/industrial_craft_2/depleted_isotope_cell/index.html b/static/browse/industrial_craft_2/depleted_isotope_cell/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/depleted_isotope_cell/index.html rename to static/browse/industrial_craft_2/depleted_isotope_cell/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/diamond_drill.png b/static/browse/industrial_craft_2/diamond_drill/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/diamond_drill.png rename to static/browse/industrial_craft_2/diamond_drill/icon.png diff --git a/prerender/browse/industrial_craft_2/diamond_drill/index.html b/static/browse/industrial_craft_2/diamond_drill/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/diamond_drill/index.html rename to static/browse/industrial_craft_2/diamond_drill/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/diamond_dust.png b/static/browse/industrial_craft_2/diamond_dust/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/diamond_dust.png rename to static/browse/industrial_craft_2/diamond_dust/icon.png diff --git a/prerender/browse/industrial_craft_2/diamond_dust/index.html b/static/browse/industrial_craft_2/diamond_dust/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/diamond_dust/index.html rename to static/browse/industrial_craft_2/diamond_dust/index.html diff --git a/prerender/browse/industrial_craft_2/diamond_industrial/index.html b/static/browse/industrial_craft_2/diamond_industrial/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/diamond_industrial/index.html rename to static/browse/industrial_craft_2/diamond_industrial/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/distilled_water.png b/static/browse/industrial_craft_2/distilled_water/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/distilled_water.png rename to static/browse/industrial_craft_2/distilled_water/icon.png diff --git a/prerender/browse/industrial_craft_2/distilled_water/index.html b/static/browse/industrial_craft_2/distilled_water/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/distilled_water/index.html rename to static/browse/industrial_craft_2/distilled_water/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/distilled_water_cell.png b/static/browse/industrial_craft_2/distilled_water_cell/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/distilled_water_cell.png rename to static/browse/industrial_craft_2/distilled_water_cell/icon.png diff --git a/prerender/browse/industrial_craft_2/distilled_water_cell/index.html b/static/browse/industrial_craft_2/distilled_water_cell/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/distilled_water_cell/index.html rename to static/browse/industrial_craft_2/distilled_water_cell/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/dual_fuel_rod_depleted_mox.png b/static/browse/industrial_craft_2/dual_fuel_rod_depleted_mox/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/dual_fuel_rod_depleted_mox.png rename to static/browse/industrial_craft_2/dual_fuel_rod_depleted_mox/icon.png diff --git a/prerender/browse/industrial_craft_2/dual_fuel_rod_depleted_mox/index.html b/static/browse/industrial_craft_2/dual_fuel_rod_depleted_mox/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/dual_fuel_rod_depleted_mox/index.html rename to static/browse/industrial_craft_2/dual_fuel_rod_depleted_mox/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/dual_fuel_rod_depleted_uranium.png b/static/browse/industrial_craft_2/dual_fuel_rod_depleted_uranium/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/dual_fuel_rod_depleted_uranium.png rename to static/browse/industrial_craft_2/dual_fuel_rod_depleted_uranium/icon.png diff --git a/prerender/browse/industrial_craft_2/dual_fuel_rod_depleted_uranium/index.html b/static/browse/industrial_craft_2/dual_fuel_rod_depleted_uranium/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/dual_fuel_rod_depleted_uranium/index.html rename to static/browse/industrial_craft_2/dual_fuel_rod_depleted_uranium/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/dual_fuel_rod_mox.png b/static/browse/industrial_craft_2/dual_fuel_rod_mox/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/dual_fuel_rod_mox.png rename to static/browse/industrial_craft_2/dual_fuel_rod_mox/icon.png diff --git a/prerender/browse/industrial_craft_2/dual_fuel_rod_mox/index.html b/static/browse/industrial_craft_2/dual_fuel_rod_mox/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/dual_fuel_rod_mox/index.html rename to static/browse/industrial_craft_2/dual_fuel_rod_mox/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/dual_fuel_rod_uranium.png b/static/browse/industrial_craft_2/dual_fuel_rod_uranium/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/dual_fuel_rod_uranium.png rename to static/browse/industrial_craft_2/dual_fuel_rod_uranium/icon.png diff --git a/prerender/browse/industrial_craft_2/dual_fuel_rod_uranium/index.html b/static/browse/industrial_craft_2/dual_fuel_rod_uranium/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/dual_fuel_rod_uranium/index.html rename to static/browse/industrial_craft_2/dual_fuel_rod_uranium/index.html diff --git a/prerender/browse/industrial_craft_2/dual_uranium_cell/index.html b/static/browse/industrial_craft_2/dual_uranium_cell/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/dual_uranium_cell/index.html rename to static/browse/industrial_craft_2/dual_uranium_cell/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/dynamite.png b/static/browse/industrial_craft_2/dynamite/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/dynamite.png rename to static/browse/industrial_craft_2/dynamite/icon.png diff --git a/prerender/browse/industrial_craft_2/dynamite/index.html b/static/browse/industrial_craft_2/dynamite/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/dynamite/index.html rename to static/browse/industrial_craft_2/dynamite/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/dynamite_o_mote.png b/static/browse/industrial_craft_2/dynamite_o_mote/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/dynamite_o_mote.png rename to static/browse/industrial_craft_2/dynamite_o_mote/icon.png diff --git a/prerender/browse/industrial_craft_2/dynamite_o_mote/index.html b/static/browse/industrial_craft_2/dynamite_o_mote/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/dynamite_o_mote/index.html rename to static/browse/industrial_craft_2/dynamite_o_mote/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/ejector_upgrade.png b/static/browse/industrial_craft_2/ejector_upgrade/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/ejector_upgrade.png rename to static/browse/industrial_craft_2/ejector_upgrade/icon.png diff --git a/prerender/browse/industrial_craft_2/ejector_upgrade/index.html b/static/browse/industrial_craft_2/ejector_upgrade/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/ejector_upgrade/index.html rename to static/browse/industrial_craft_2/ejector_upgrade/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/electric_boat.png b/static/browse/industrial_craft_2/electric_boat/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/electric_boat.png rename to static/browse/industrial_craft_2/electric_boat/icon.png diff --git a/prerender/browse/industrial_craft_2/electric_boat/index.html b/static/browse/industrial_craft_2/electric_boat/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/electric_boat/index.html rename to static/browse/industrial_craft_2/electric_boat/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/electric_furnace.png b/static/browse/industrial_craft_2/electric_furnace/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/electric_furnace.png rename to static/browse/industrial_craft_2/electric_furnace/icon.png diff --git a/prerender/browse/industrial_craft_2/electric_furnace/index.html b/static/browse/industrial_craft_2/electric_furnace/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/electric_furnace/index.html rename to static/browse/industrial_craft_2/electric_furnace/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/electric_heat_generator.png b/static/browse/industrial_craft_2/electric_heat_generator/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/electric_heat_generator.png rename to static/browse/industrial_craft_2/electric_heat_generator/icon.png diff --git a/prerender/browse/industrial_craft_2/electric_heat_generator/index.html b/static/browse/industrial_craft_2/electric_heat_generator/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/electric_heat_generator/index.html rename to static/browse/industrial_craft_2/electric_heat_generator/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/electric_hoe.png b/static/browse/industrial_craft_2/electric_hoe/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/electric_hoe.png rename to static/browse/industrial_craft_2/electric_hoe/icon.png diff --git a/prerender/browse/industrial_craft_2/electric_hoe/index.html b/static/browse/industrial_craft_2/electric_hoe/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/electric_hoe/index.html rename to static/browse/industrial_craft_2/electric_hoe/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/electric_jetpack.png b/static/browse/industrial_craft_2/electric_jetpack/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/electric_jetpack.png rename to static/browse/industrial_craft_2/electric_jetpack/icon.png diff --git a/prerender/browse/industrial_craft_2/electric_jetpack/index.html b/static/browse/industrial_craft_2/electric_jetpack/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/electric_jetpack/index.html rename to static/browse/industrial_craft_2/electric_jetpack/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/electric_kinetic_generator.png b/static/browse/industrial_craft_2/electric_kinetic_generator/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/electric_kinetic_generator.png rename to static/browse/industrial_craft_2/electric_kinetic_generator/icon.png diff --git a/prerender/browse/industrial_craft_2/electric_kinetic_generator/index.html b/static/browse/industrial_craft_2/electric_kinetic_generator/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/electric_kinetic_generator/index.html rename to static/browse/industrial_craft_2/electric_kinetic_generator/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/electric_motor.png b/static/browse/industrial_craft_2/electric_motor/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/electric_motor.png rename to static/browse/industrial_craft_2/electric_motor/icon.png diff --git a/prerender/browse/industrial_craft_2/electric_motor/index.html b/static/browse/industrial_craft_2/electric_motor/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/electric_motor/index.html rename to static/browse/industrial_craft_2/electric_motor/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/electric_sorting_machine.png b/static/browse/industrial_craft_2/electric_sorting_machine/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/electric_sorting_machine.png rename to static/browse/industrial_craft_2/electric_sorting_machine/icon.png diff --git a/prerender/browse/industrial_craft_2/electric_sorting_machine/index.html b/static/browse/industrial_craft_2/electric_sorting_machine/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/electric_sorting_machine/index.html rename to static/browse/industrial_craft_2/electric_sorting_machine/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/electric_treetap.png b/static/browse/industrial_craft_2/electric_treetap/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/electric_treetap.png rename to static/browse/industrial_craft_2/electric_treetap/icon.png diff --git a/prerender/browse/industrial_craft_2/electric_treetap/index.html b/static/browse/industrial_craft_2/electric_treetap/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/electric_treetap/index.html rename to static/browse/industrial_craft_2/electric_treetap/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/electric_wrench.png b/static/browse/industrial_craft_2/electric_wrench/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/electric_wrench.png rename to static/browse/industrial_craft_2/electric_wrench/icon.png diff --git a/prerender/browse/industrial_craft_2/electric_wrench/index.html b/static/browse/industrial_craft_2/electric_wrench/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/electric_wrench/index.html rename to static/browse/industrial_craft_2/electric_wrench/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/electrolyzed_water_cell.png b/static/browse/industrial_craft_2/electrolyzed_water_cell/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/electrolyzed_water_cell.png rename to static/browse/industrial_craft_2/electrolyzed_water_cell/icon.png diff --git a/prerender/browse/industrial_craft_2/electrolyzed_water_cell/index.html b/static/browse/industrial_craft_2/electrolyzed_water_cell/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/electrolyzed_water_cell/index.html rename to static/browse/industrial_craft_2/electrolyzed_water_cell/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/electrolyzer.png b/static/browse/industrial_craft_2/electrolyzer/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/electrolyzer.png rename to static/browse/industrial_craft_2/electrolyzer/icon.png diff --git a/prerender/browse/industrial_craft_2/electrolyzer/index.html b/static/browse/industrial_craft_2/electrolyzer/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/electrolyzer/index.html rename to static/browse/industrial_craft_2/electrolyzer/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/electronic_circuit.png b/static/browse/industrial_craft_2/electronic_circuit/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/electronic_circuit.png rename to static/browse/industrial_craft_2/electronic_circuit/icon.png diff --git a/prerender/browse/industrial_craft_2/electronic_circuit/index.html b/static/browse/industrial_craft_2/electronic_circuit/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/electronic_circuit/index.html rename to static/browse/industrial_craft_2/electronic_circuit/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/empty_booze_barrel.png b/static/browse/industrial_craft_2/empty_booze_barrel/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/empty_booze_barrel.png rename to static/browse/industrial_craft_2/empty_booze_barrel/icon.png diff --git a/prerender/browse/industrial_craft_2/empty_booze_barrel/index.html b/static/browse/industrial_craft_2/empty_booze_barrel/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/empty_booze_barrel/index.html rename to static/browse/industrial_craft_2/empty_booze_barrel/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/empty_cell.png b/static/browse/industrial_craft_2/empty_cell/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/empty_cell.png rename to static/browse/industrial_craft_2/empty_cell/icon.png diff --git a/prerender/browse/industrial_craft_2/empty_cell/index.html b/static/browse/industrial_craft_2/empty_cell/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/empty_cell/index.html rename to static/browse/industrial_craft_2/empty_cell/index.html diff --git a/prerender/browse/industrial_craft_2/empty_fuel_can/index.html b/static/browse/industrial_craft_2/empty_fuel_can/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/empty_fuel_can/index.html rename to static/browse/industrial_craft_2/empty_fuel_can/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/energium_dust.png b/static/browse/industrial_craft_2/energium_dust/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/energium_dust.png rename to static/browse/industrial_craft_2/energium_dust/icon.png diff --git a/prerender/browse/industrial_craft_2/energium_dust/index.html b/static/browse/industrial_craft_2/energium_dust/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/energium_dust/index.html rename to static/browse/industrial_craft_2/energium_dust/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/energy_crystal.png b/static/browse/industrial_craft_2/energy_crystal/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/energy_crystal.png rename to static/browse/industrial_craft_2/energy_crystal/icon.png diff --git a/prerender/browse/industrial_craft_2/energy_crystal/index.html b/static/browse/industrial_craft_2/energy_crystal/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/energy_crystal/index.html rename to static/browse/industrial_craft_2/energy_crystal/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/energy_o_mat.png b/static/browse/industrial_craft_2/energy_o_mat/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/energy_o_mat.png rename to static/browse/industrial_craft_2/energy_o_mat/icon.png diff --git a/prerender/browse/industrial_craft_2/energy_o_mat/index.html b/static/browse/industrial_craft_2/energy_o_mat/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/energy_o_mat/index.html rename to static/browse/industrial_craft_2/energy_o_mat/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/energy_storage_upgrade.png b/static/browse/industrial_craft_2/energy_storage_upgrade/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/energy_storage_upgrade.png rename to static/browse/industrial_craft_2/energy_storage_upgrade/icon.png diff --git a/prerender/browse/industrial_craft_2/energy_storage_upgrade/index.html b/static/browse/industrial_craft_2/energy_storage_upgrade/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/energy_storage_upgrade/index.html rename to static/browse/industrial_craft_2/energy_storage_upgrade/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/energypack.png b/static/browse/industrial_craft_2/energypack/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/energypack.png rename to static/browse/industrial_craft_2/energypack/icon.png diff --git a/prerender/browse/industrial_craft_2/energypack/index.html b/static/browse/industrial_craft_2/energypack/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/energypack/index.html rename to static/browse/industrial_craft_2/energypack/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/enriched_uranium_nuclear_fuel.png b/static/browse/industrial_craft_2/enriched_uranium_nuclear_fuel/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/enriched_uranium_nuclear_fuel.png rename to static/browse/industrial_craft_2/enriched_uranium_nuclear_fuel/icon.png diff --git a/prerender/browse/industrial_craft_2/enriched_uranium_nuclear_fuel/index.html b/static/browse/industrial_craft_2/enriched_uranium_nuclear_fuel/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/enriched_uranium_nuclear_fuel/index.html rename to static/browse/industrial_craft_2/enriched_uranium_nuclear_fuel/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/eu_detector_cable.png b/static/browse/industrial_craft_2/eu_detector_cable/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/eu_detector_cable.png rename to static/browse/industrial_craft_2/eu_detector_cable/icon.png diff --git a/prerender/browse/industrial_craft_2/eu_detector_cable/index.html b/static/browse/industrial_craft_2/eu_detector_cable/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/eu_detector_cable/index.html rename to static/browse/industrial_craft_2/eu_detector_cable/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/eu_reader.png b/static/browse/industrial_craft_2/eu_reader/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/eu_reader.png rename to static/browse/industrial_craft_2/eu_reader/icon.png diff --git a/prerender/browse/industrial_craft_2/eu_reader/index.html b/static/browse/industrial_craft_2/eu_reader/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/eu_reader/index.html rename to static/browse/industrial_craft_2/eu_reader/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/eu_splitter_cable.png b/static/browse/industrial_craft_2/eu_splitter_cable/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/eu_splitter_cable.png rename to static/browse/industrial_craft_2/eu_splitter_cable/icon.png diff --git a/prerender/browse/industrial_craft_2/eu_splitter_cable/index.html b/static/browse/industrial_craft_2/eu_splitter_cable/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/eu_splitter_cable/index.html rename to static/browse/industrial_craft_2/eu_splitter_cable/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/ev_transformer.png b/static/browse/industrial_craft_2/ev_transformer/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/ev_transformer.png rename to static/browse/industrial_craft_2/ev_transformer/icon.png diff --git a/prerender/browse/industrial_craft_2/ev_transformer/index.html b/static/browse/industrial_craft_2/ev_transformer/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/ev_transformer/index.html rename to static/browse/industrial_craft_2/ev_transformer/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/extractor.png b/static/browse/industrial_craft_2/extractor/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/extractor.png rename to static/browse/industrial_craft_2/extractor/icon.png diff --git a/prerender/browse/industrial_craft_2/extractor/index.html b/static/browse/industrial_craft_2/extractor/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/extractor/index.html rename to static/browse/industrial_craft_2/extractor/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/fermenter.png b/static/browse/industrial_craft_2/fermenter/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/fermenter.png rename to static/browse/industrial_craft_2/fermenter/icon.png diff --git a/prerender/browse/industrial_craft_2/fermenter/index.html b/static/browse/industrial_craft_2/fermenter/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/fermenter/index.html rename to static/browse/industrial_craft_2/fermenter/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/ferru_seeds.png b/static/browse/industrial_craft_2/ferru_seeds/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/ferru_seeds.png rename to static/browse/industrial_craft_2/ferru_seeds/icon.png diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/fertilizer.png b/static/browse/industrial_craft_2/fertilizer/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/fertilizer.png rename to static/browse/industrial_craft_2/fertilizer/icon.png diff --git a/prerender/browse/industrial_craft_2/fertilizer/index.html b/static/browse/industrial_craft_2/fertilizer/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/fertilizer/index.html rename to static/browse/industrial_craft_2/fertilizer/index.html diff --git a/prerender/browse/industrial_craft_2/filled_fuel_can/index.html b/static/browse/industrial_craft_2/filled_fuel_can/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/filled_fuel_can/index.html rename to static/browse/industrial_craft_2/filled_fuel_can/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/filled_tin_can.png b/static/browse/industrial_craft_2/filled_tin_can/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/filled_tin_can.png rename to static/browse/industrial_craft_2/filled_tin_can/icon.png diff --git a/prerender/browse/industrial_craft_2/filled_tin_can/index.html b/static/browse/industrial_craft_2/filled_tin_can/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/filled_tin_can/index.html rename to static/browse/industrial_craft_2/filled_tin_can/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/fluid_distributor.png b/static/browse/industrial_craft_2/fluid_distributor/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/fluid_distributor.png rename to static/browse/industrial_craft_2/fluid_distributor/icon.png diff --git a/prerender/browse/industrial_craft_2/fluid_distributor/index.html b/static/browse/industrial_craft_2/fluid_distributor/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/fluid_distributor/index.html rename to static/browse/industrial_craft_2/fluid_distributor/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/fluid_ejector_upgrade.png b/static/browse/industrial_craft_2/fluid_ejector_upgrade/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/fluid_ejector_upgrade.png rename to static/browse/industrial_craft_2/fluid_ejector_upgrade/icon.png diff --git a/prerender/browse/industrial_craft_2/fluid_ejector_upgrade/index.html b/static/browse/industrial_craft_2/fluid_ejector_upgrade/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/fluid_ejector_upgrade/index.html rename to static/browse/industrial_craft_2/fluid_ejector_upgrade/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/fluid_heat_generator.png b/static/browse/industrial_craft_2/fluid_heat_generator/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/fluid_heat_generator.png rename to static/browse/industrial_craft_2/fluid_heat_generator/icon.png diff --git a/prerender/browse/industrial_craft_2/fluid_heat_generator/index.html b/static/browse/industrial_craft_2/fluid_heat_generator/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/fluid_heat_generator/index.html rename to static/browse/industrial_craft_2/fluid_heat_generator/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/fluid_regulator.png b/static/browse/industrial_craft_2/fluid_regulator/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/fluid_regulator.png rename to static/browse/industrial_craft_2/fluid_regulator/icon.png diff --git a/prerender/browse/industrial_craft_2/fluid_regulator/index.html b/static/browse/industrial_craft_2/fluid_regulator/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/fluid_regulator/index.html rename to static/browse/industrial_craft_2/fluid_regulator/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/fluid_solid_canning_machine.png b/static/browse/industrial_craft_2/fluid_solid_canning_machine/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/fluid_solid_canning_machine.png rename to static/browse/industrial_craft_2/fluid_solid_canning_machine/icon.png diff --git a/prerender/browse/industrial_craft_2/fluid_solid_canning_machine/index.html b/static/browse/industrial_craft_2/fluid_solid_canning_machine/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/fluid_solid_canning_machine/index.html rename to static/browse/industrial_craft_2/fluid_solid_canning_machine/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/forge_hammer.png b/static/browse/industrial_craft_2/forge_hammer/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/forge_hammer.png rename to static/browse/industrial_craft_2/forge_hammer/icon.png diff --git a/prerender/browse/industrial_craft_2/forge_hammer/index.html b/static/browse/industrial_craft_2/forge_hammer/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/forge_hammer/index.html rename to static/browse/industrial_craft_2/forge_hammer/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/frequency_transmitter.png b/static/browse/industrial_craft_2/frequency_transmitter/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/frequency_transmitter.png rename to static/browse/industrial_craft_2/frequency_transmitter/icon.png diff --git a/prerender/browse/industrial_craft_2/frequency_transmitter/index.html b/static/browse/industrial_craft_2/frequency_transmitter/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/frequency_transmitter/index.html rename to static/browse/industrial_craft_2/frequency_transmitter/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/fuel_rod_depleted_mox.png b/static/browse/industrial_craft_2/fuel_rod_depleted_mox/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/fuel_rod_depleted_mox.png rename to static/browse/industrial_craft_2/fuel_rod_depleted_mox/icon.png diff --git a/prerender/browse/industrial_craft_2/fuel_rod_depleted_mox/index.html b/static/browse/industrial_craft_2/fuel_rod_depleted_mox/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/fuel_rod_depleted_mox/index.html rename to static/browse/industrial_craft_2/fuel_rod_depleted_mox/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/fuel_rod_depleted_uranium.png b/static/browse/industrial_craft_2/fuel_rod_depleted_uranium/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/fuel_rod_depleted_uranium.png rename to static/browse/industrial_craft_2/fuel_rod_depleted_uranium/icon.png diff --git a/prerender/browse/industrial_craft_2/fuel_rod_depleted_uranium/index.html b/static/browse/industrial_craft_2/fuel_rod_depleted_uranium/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/fuel_rod_depleted_uranium/index.html rename to static/browse/industrial_craft_2/fuel_rod_depleted_uranium/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/fuel_rod_empty.png b/static/browse/industrial_craft_2/fuel_rod_empty/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/fuel_rod_empty.png rename to static/browse/industrial_craft_2/fuel_rod_empty/icon.png diff --git a/prerender/browse/industrial_craft_2/fuel_rod_empty/index.html b/static/browse/industrial_craft_2/fuel_rod_empty/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/fuel_rod_empty/index.html rename to static/browse/industrial_craft_2/fuel_rod_empty/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/fuel_rod_lithium.png b/static/browse/industrial_craft_2/fuel_rod_lithium/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/fuel_rod_lithium.png rename to static/browse/industrial_craft_2/fuel_rod_lithium/icon.png diff --git a/prerender/browse/industrial_craft_2/fuel_rod_lithium/index.html b/static/browse/industrial_craft_2/fuel_rod_lithium/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/fuel_rod_lithium/index.html rename to static/browse/industrial_craft_2/fuel_rod_lithium/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/fuel_rod_mox.png b/static/browse/industrial_craft_2/fuel_rod_mox/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/fuel_rod_mox.png rename to static/browse/industrial_craft_2/fuel_rod_mox/icon.png diff --git a/prerender/browse/industrial_craft_2/fuel_rod_mox/index.html b/static/browse/industrial_craft_2/fuel_rod_mox/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/fuel_rod_mox/index.html rename to static/browse/industrial_craft_2/fuel_rod_mox/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/fuel_rod_tritium.png b/static/browse/industrial_craft_2/fuel_rod_tritium/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/fuel_rod_tritium.png rename to static/browse/industrial_craft_2/fuel_rod_tritium/icon.png diff --git a/prerender/browse/industrial_craft_2/fuel_rod_tritium/index.html b/static/browse/industrial_craft_2/fuel_rod_tritium/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/fuel_rod_tritium/index.html rename to static/browse/industrial_craft_2/fuel_rod_tritium/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/fuel_rod_uranium.png b/static/browse/industrial_craft_2/fuel_rod_uranium/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/fuel_rod_uranium.png rename to static/browse/industrial_craft_2/fuel_rod_uranium/icon.png diff --git a/prerender/browse/industrial_craft_2/fuel_rod_uranium/index.html b/static/browse/industrial_craft_2/fuel_rod_uranium/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/fuel_rod_uranium/index.html rename to static/browse/industrial_craft_2/fuel_rod_uranium/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/generator.png b/static/browse/industrial_craft_2/generator/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/generator.png rename to static/browse/industrial_craft_2/generator/icon.png diff --git a/prerender/browse/industrial_craft_2/generator/index.html b/static/browse/industrial_craft_2/generator/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/generator/index.html rename to static/browse/industrial_craft_2/generator/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/geothermal_generator.png b/static/browse/industrial_craft_2/geothermal_generator/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/geothermal_generator.png rename to static/browse/industrial_craft_2/geothermal_generator/icon.png diff --git a/prerender/browse/industrial_craft_2/geothermal_generator/index.html b/static/browse/industrial_craft_2/geothermal_generator/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/geothermal_generator/index.html rename to static/browse/industrial_craft_2/geothermal_generator/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/glass_fibre_cable.png b/static/browse/industrial_craft_2/glass_fibre_cable/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/glass_fibre_cable.png rename to static/browse/industrial_craft_2/glass_fibre_cable/icon.png diff --git a/prerender/browse/industrial_craft_2/glass_fibre_cable/index.html b/static/browse/industrial_craft_2/glass_fibre_cable/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/glass_fibre_cable/index.html rename to static/browse/industrial_craft_2/glass_fibre_cable/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/gold_cable.png b/static/browse/industrial_craft_2/gold_cable/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/gold_cable.png rename to static/browse/industrial_craft_2/gold_cable/icon.png diff --git a/prerender/browse/industrial_craft_2/gold_cable/index.html b/static/browse/industrial_craft_2/gold_cable/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/gold_cable/index.html rename to static/browse/industrial_craft_2/gold_cable/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/gold_dust.png b/static/browse/industrial_craft_2/gold_dust/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/gold_dust.png rename to static/browse/industrial_craft_2/gold_dust/icon.png diff --git a/prerender/browse/industrial_craft_2/gold_dust/index.html b/static/browse/industrial_craft_2/gold_dust/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/gold_dust/index.html rename to static/browse/industrial_craft_2/gold_dust/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/gold_item_casing.png b/static/browse/industrial_craft_2/gold_item_casing/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/gold_item_casing.png rename to static/browse/industrial_craft_2/gold_item_casing/icon.png diff --git a/prerender/browse/industrial_craft_2/gold_item_casing/index.html b/static/browse/industrial_craft_2/gold_item_casing/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/gold_item_casing/index.html rename to static/browse/industrial_craft_2/gold_item_casing/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/gold_plate.png b/static/browse/industrial_craft_2/gold_plate/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/gold_plate.png rename to static/browse/industrial_craft_2/gold_plate/icon.png diff --git a/prerender/browse/industrial_craft_2/gold_plate/index.html b/static/browse/industrial_craft_2/gold_plate/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/gold_plate/index.html rename to static/browse/industrial_craft_2/gold_plate/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/green_painter.png b/static/browse/industrial_craft_2/green_painter/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/green_painter.png rename to static/browse/industrial_craft_2/green_painter/icon.png diff --git a/prerender/browse/industrial_craft_2/green_painter/index.html b/static/browse/industrial_craft_2/green_painter/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/green_painter/index.html rename to static/browse/industrial_craft_2/green_painter/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/grin_powder.png b/static/browse/industrial_craft_2/grin_powder/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/grin_powder.png rename to static/browse/industrial_craft_2/grin_powder/icon.png diff --git a/prerender/browse/industrial_craft_2/grin_powder/index.html b/static/browse/industrial_craft_2/grin_powder/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/grin_powder/index.html rename to static/browse/industrial_craft_2/grin_powder/index.html diff --git a/prerender/browse/industrial_craft_2/h_coal_cell/index.html b/static/browse/industrial_craft_2/h_coal_cell/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/h_coal_cell/index.html rename to static/browse/industrial_craft_2/h_coal_cell/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/hazmat_suit.png b/static/browse/industrial_craft_2/hazmat_suit/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/hazmat_suit.png rename to static/browse/industrial_craft_2/hazmat_suit/icon.png diff --git a/prerender/browse/industrial_craft_2/hazmat_suit/index.html b/static/browse/industrial_craft_2/hazmat_suit/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/hazmat_suit/index.html rename to static/browse/industrial_craft_2/hazmat_suit/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/hazmat_suit_leggings.png b/static/browse/industrial_craft_2/hazmat_suit_leggings/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/hazmat_suit_leggings.png rename to static/browse/industrial_craft_2/hazmat_suit_leggings/icon.png diff --git a/prerender/browse/industrial_craft_2/hazmat_suit_leggings/index.html b/static/browse/industrial_craft_2/hazmat_suit_leggings/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/hazmat_suit_leggings/index.html rename to static/browse/industrial_craft_2/hazmat_suit_leggings/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/heat_capacity_reactor_plating.png b/static/browse/industrial_craft_2/heat_capacity_reactor_plating/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/heat_capacity_reactor_plating.png rename to static/browse/industrial_craft_2/heat_capacity_reactor_plating/icon.png diff --git a/prerender/browse/industrial_craft_2/heat_capacity_reactor_plating/index.html b/static/browse/industrial_craft_2/heat_capacity_reactor_plating/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/heat_capacity_reactor_plating/index.html rename to static/browse/industrial_craft_2/heat_capacity_reactor_plating/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/heat_conductor.png b/static/browse/industrial_craft_2/heat_conductor/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/heat_conductor.png rename to static/browse/industrial_craft_2/heat_conductor/icon.png diff --git a/prerender/browse/industrial_craft_2/heat_conductor/index.html b/static/browse/industrial_craft_2/heat_conductor/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/heat_conductor/index.html rename to static/browse/industrial_craft_2/heat_conductor/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/heat_exchanger.png b/static/browse/industrial_craft_2/heat_exchanger/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/heat_exchanger.png rename to static/browse/industrial_craft_2/heat_exchanger/icon.png diff --git a/prerender/browse/industrial_craft_2/heat_exchanger/index.html b/static/browse/industrial_craft_2/heat_exchanger/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/heat_exchanger/index.html rename to static/browse/industrial_craft_2/heat_exchanger/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/heat_vent.png b/static/browse/industrial_craft_2/heat_vent/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/heat_vent.png rename to static/browse/industrial_craft_2/heat_vent/icon.png diff --git a/prerender/browse/industrial_craft_2/heat_vent/index.html b/static/browse/industrial_craft_2/heat_vent/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/heat_vent/index.html rename to static/browse/industrial_craft_2/heat_vent/index.html diff --git a/prerender/browse/industrial_craft_2/heating_cell/index.html b/static/browse/industrial_craft_2/heating_cell/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/heating_cell/index.html rename to static/browse/industrial_craft_2/heating_cell/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/hops.png b/static/browse/industrial_craft_2/hops/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/hops.png rename to static/browse/industrial_craft_2/hops/icon.png diff --git a/prerender/browse/industrial_craft_2/hops/index.html b/static/browse/industrial_craft_2/hops/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/hops/index.html rename to static/browse/industrial_craft_2/hops/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/hops_seeds.png b/static/browse/industrial_craft_2/hops_seeds/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/hops_seeds.png rename to static/browse/industrial_craft_2/hops_seeds/icon.png diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/hot_coolant_cell.png b/static/browse/industrial_craft_2/hot_coolant_cell/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/hot_coolant_cell.png rename to static/browse/industrial_craft_2/hot_coolant_cell/icon.png diff --git a/prerender/browse/industrial_craft_2/hot_coolant_cell/index.html b/static/browse/industrial_craft_2/hot_coolant_cell/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/hot_coolant_cell/index.html rename to static/browse/industrial_craft_2/hot_coolant_cell/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/hv_cable.png b/static/browse/industrial_craft_2/hv_cable/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/hv_cable.png rename to static/browse/industrial_craft_2/hv_cable/icon.png diff --git a/prerender/browse/industrial_craft_2/hv_cable/index.html b/static/browse/industrial_craft_2/hv_cable/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/hv_cable/index.html rename to static/browse/industrial_craft_2/hv_cable/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/hv_transformer.png b/static/browse/industrial_craft_2/hv_transformer/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/hv_transformer.png rename to static/browse/industrial_craft_2/hv_transformer/icon.png diff --git a/prerender/browse/industrial_craft_2/hv_transformer/index.html b/static/browse/industrial_craft_2/hv_transformer/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/hv_transformer/index.html rename to static/browse/industrial_craft_2/hv_transformer/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/hydrated_coal_dust.png b/static/browse/industrial_craft_2/hydrated_coal_dust/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/hydrated_coal_dust.png rename to static/browse/industrial_craft_2/hydrated_coal_dust/icon.png diff --git a/prerender/browse/industrial_craft_2/hydrated_coal_dust/index.html b/static/browse/industrial_craft_2/hydrated_coal_dust/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/hydrated_coal_dust/index.html rename to static/browse/industrial_craft_2/hydrated_coal_dust/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/hydration_cell.png b/static/browse/industrial_craft_2/hydration_cell/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/hydration_cell.png rename to static/browse/industrial_craft_2/hydration_cell/icon.png diff --git a/prerender/browse/industrial_craft_2/hydration_cell/index.html b/static/browse/industrial_craft_2/hydration_cell/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/hydration_cell/index.html rename to static/browse/industrial_craft_2/hydration_cell/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/ic2_blockbarrel.png b/static/browse/industrial_craft_2/ic2_blockbarrel/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/ic2_blockbarrel.png rename to static/browse/industrial_craft_2/ic2_blockbarrel/icon.png diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/ic2_blockcable.png b/static/browse/industrial_craft_2/ic2_blockcable/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/ic2_blockcable.png rename to static/browse/industrial_craft_2/ic2_blockcable/icon.png diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/ic2_blockdynamite.png b/static/browse/industrial_craft_2/ic2_blockdynamite/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/ic2_blockdynamite.png rename to static/browse/industrial_craft_2/ic2_blockdynamite/icon.png diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/ic2_blockdynamiteremote.png b/static/browse/industrial_craft_2/ic2_blockdynamiteremote/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/ic2_blockdynamiteremote.png rename to static/browse/industrial_craft_2/ic2_blockdynamiteremote/icon.png diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/ic2_blockharz.png b/static/browse/industrial_craft_2/ic2_blockharz/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/ic2_blockharz.png rename to static/browse/industrial_craft_2/ic2_blockharz/icon.png diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/ic2_blockwall.png b/static/browse/industrial_craft_2/ic2_blockwall/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/ic2_blockwall.png rename to static/browse/industrial_craft_2/ic2_blockwall/icon.png diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/ic2_blockwall_10.png b/static/browse/industrial_craft_2/ic2_blockwall_10/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/ic2_blockwall_10.png rename to static/browse/industrial_craft_2/ic2_blockwall_10/icon.png diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/ic2_blockwall_11.png b/static/browse/industrial_craft_2/ic2_blockwall_11/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/ic2_blockwall_11.png rename to static/browse/industrial_craft_2/ic2_blockwall_11/icon.png diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/ic2_blockwall_12.png b/static/browse/industrial_craft_2/ic2_blockwall_12/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/ic2_blockwall_12.png rename to static/browse/industrial_craft_2/ic2_blockwall_12/icon.png diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/ic2_blockwall_13.png b/static/browse/industrial_craft_2/ic2_blockwall_13/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/ic2_blockwall_13.png rename to static/browse/industrial_craft_2/ic2_blockwall_13/icon.png diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/ic2_blockwall_14.png b/static/browse/industrial_craft_2/ic2_blockwall_14/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/ic2_blockwall_14.png rename to static/browse/industrial_craft_2/ic2_blockwall_14/icon.png diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/ic2_blockwall_15.png b/static/browse/industrial_craft_2/ic2_blockwall_15/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/ic2_blockwall_15.png rename to static/browse/industrial_craft_2/ic2_blockwall_15/icon.png diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/ic2_blockwall_16.png b/static/browse/industrial_craft_2/ic2_blockwall_16/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/ic2_blockwall_16.png rename to static/browse/industrial_craft_2/ic2_blockwall_16/icon.png diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/ic2_blockwall_2.png b/static/browse/industrial_craft_2/ic2_blockwall_2/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/ic2_blockwall_2.png rename to static/browse/industrial_craft_2/ic2_blockwall_2/icon.png diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/ic2_blockwall_3.png b/static/browse/industrial_craft_2/ic2_blockwall_3/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/ic2_blockwall_3.png rename to static/browse/industrial_craft_2/ic2_blockwall_3/icon.png diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/ic2_blockwall_4.png b/static/browse/industrial_craft_2/ic2_blockwall_4/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/ic2_blockwall_4.png rename to static/browse/industrial_craft_2/ic2_blockwall_4/icon.png diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/ic2_blockwall_5.png b/static/browse/industrial_craft_2/ic2_blockwall_5/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/ic2_blockwall_5.png rename to static/browse/industrial_craft_2/ic2_blockwall_5/icon.png diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/ic2_blockwall_6.png b/static/browse/industrial_craft_2/ic2_blockwall_6/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/ic2_blockwall_6.png rename to static/browse/industrial_craft_2/ic2_blockwall_6/icon.png diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/ic2_blockwall_7.png b/static/browse/industrial_craft_2/ic2_blockwall_7/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/ic2_blockwall_7.png rename to static/browse/industrial_craft_2/ic2_blockwall_7/icon.png diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/ic2_blockwall_8.png b/static/browse/industrial_craft_2/ic2_blockwall_8/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/ic2_blockwall_8.png rename to static/browse/industrial_craft_2/ic2_blockwall_8/icon.png diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/ic2_blockwall_9.png b/static/browse/industrial_craft_2/ic2_blockwall_9/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/ic2_blockwall_9.png rename to static/browse/industrial_craft_2/ic2_blockwall_9/icon.png diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/ic2_coolant.png b/static/browse/industrial_craft_2/ic2_coolant/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/ic2_coolant.png rename to static/browse/industrial_craft_2/ic2_coolant/icon.png diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/ic2_hot_coolant.png b/static/browse/industrial_craft_2/ic2_hot_coolant/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/ic2_hot_coolant.png rename to static/browse/industrial_craft_2/ic2_hot_coolant/icon.png diff --git a/prerender/browse/industrial_craft_2/ic2_hot_coolant/index.html b/static/browse/industrial_craft_2/ic2_hot_coolant/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/ic2_hot_coolant/index.html rename to static/browse/industrial_craft_2/ic2_hot_coolant/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/ic2_plasmalauncher.png b/static/browse/industrial_craft_2/ic2_plasmalauncher/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/ic2_plasmalauncher.png rename to static/browse/industrial_craft_2/ic2_plasmalauncher/icon.png diff --git a/src/data/industrial_craft_2/logo.png b/static/browse/industrial_craft_2/icon.png similarity index 100% rename from src/data/industrial_craft_2/logo.png rename to static/browse/industrial_craft_2/icon.png diff --git a/prerender/browse/industrial_craft_2/index.html b/static/browse/industrial_craft_2/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/index.html rename to static/browse/industrial_craft_2/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/induction_furnace.png b/static/browse/industrial_craft_2/induction_furnace/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/induction_furnace.png rename to static/browse/industrial_craft_2/induction_furnace/icon.png diff --git a/prerender/browse/industrial_craft_2/induction_furnace/index.html b/static/browse/industrial_craft_2/induction_furnace/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/induction_furnace/index.html rename to static/browse/industrial_craft_2/induction_furnace/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/industrial_credit.png b/static/browse/industrial_craft_2/industrial_credit/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/industrial_credit.png rename to static/browse/industrial_craft_2/industrial_credit/icon.png diff --git a/prerender/browse/industrial_craft_2/industrial_credit/index.html b/static/browse/industrial_craft_2/industrial_credit/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/industrial_credit/index.html rename to static/browse/industrial_craft_2/industrial_credit/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/industrial_diamond.png b/static/browse/industrial_craft_2/industrial_diamond/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/industrial_diamond.png rename to static/browse/industrial_craft_2/industrial_diamond/icon.png diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/industrial_tnt.png b/static/browse/industrial_craft_2/industrial_tnt/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/industrial_tnt.png rename to static/browse/industrial_craft_2/industrial_tnt/icon.png diff --git a/prerender/browse/industrial_craft_2/industrial_tnt/index.html b/static/browse/industrial_craft_2/industrial_tnt/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/industrial_tnt/index.html rename to static/browse/industrial_craft_2/industrial_tnt/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/insulated_copper_cable.png b/static/browse/industrial_craft_2/insulated_copper_cable/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/insulated_copper_cable.png rename to static/browse/industrial_craft_2/insulated_copper_cable/icon.png diff --git a/prerender/browse/industrial_craft_2/insulated_copper_cable/index.html b/static/browse/industrial_craft_2/insulated_copper_cable/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/insulated_copper_cable/index.html rename to static/browse/industrial_craft_2/insulated_copper_cable/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/insulated_gold_cable.png b/static/browse/industrial_craft_2/insulated_gold_cable/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/insulated_gold_cable.png rename to static/browse/industrial_craft_2/insulated_gold_cable/icon.png diff --git a/prerender/browse/industrial_craft_2/insulated_gold_cable/index.html b/static/browse/industrial_craft_2/insulated_gold_cable/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/insulated_gold_cable/index.html rename to static/browse/industrial_craft_2/insulated_gold_cable/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/insulated_hv_cable.png b/static/browse/industrial_craft_2/insulated_hv_cable/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/insulated_hv_cable.png rename to static/browse/industrial_craft_2/insulated_hv_cable/icon.png diff --git a/prerender/browse/industrial_craft_2/insulated_hv_cable/index.html b/static/browse/industrial_craft_2/insulated_hv_cable/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/insulated_hv_cable/index.html rename to static/browse/industrial_craft_2/insulated_hv_cable/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/insulated_tin_cable.png b/static/browse/industrial_craft_2/insulated_tin_cable/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/insulated_tin_cable.png rename to static/browse/industrial_craft_2/insulated_tin_cable/icon.png diff --git a/prerender/browse/industrial_craft_2/insulated_tin_cable/index.html b/static/browse/industrial_craft_2/insulated_tin_cable/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/insulated_tin_cable/index.html rename to static/browse/industrial_craft_2/insulated_tin_cable/index.html diff --git a/prerender/browse/industrial_craft_2/insulation_cutter/index.html b/static/browse/industrial_craft_2/insulation_cutter/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/insulation_cutter/index.html rename to static/browse/industrial_craft_2/insulation_cutter/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/iridium_drill.png b/static/browse/industrial_craft_2/iridium_drill/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/iridium_drill.png rename to static/browse/industrial_craft_2/iridium_drill/icon.png diff --git a/prerender/browse/industrial_craft_2/iridium_drill/index.html b/static/browse/industrial_craft_2/iridium_drill/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/iridium_drill/index.html rename to static/browse/industrial_craft_2/iridium_drill/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/iridium_ore.png b/static/browse/industrial_craft_2/iridium_ore/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/iridium_ore.png rename to static/browse/industrial_craft_2/iridium_ore/icon.png diff --git a/prerender/browse/industrial_craft_2/iridium_ore/index.html b/static/browse/industrial_craft_2/iridium_ore/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/iridium_ore/index.html rename to static/browse/industrial_craft_2/iridium_ore/index.html diff --git a/prerender/browse/industrial_craft_2/iridium_plate/index.html b/static/browse/industrial_craft_2/iridium_plate/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/iridium_plate/index.html rename to static/browse/industrial_craft_2/iridium_plate/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/iridium_reinforced_plate.png b/static/browse/industrial_craft_2/iridium_reinforced_plate/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/iridium_reinforced_plate.png rename to static/browse/industrial_craft_2/iridium_reinforced_plate/icon.png diff --git a/prerender/browse/industrial_craft_2/iridium_reinforced_plate/index.html b/static/browse/industrial_craft_2/iridium_reinforced_plate/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/iridium_reinforced_plate/index.html rename to static/browse/industrial_craft_2/iridium_reinforced_plate/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/iron_dust.png b/static/browse/industrial_craft_2/iron_dust/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/iron_dust.png rename to static/browse/industrial_craft_2/iron_dust/icon.png diff --git a/prerender/browse/industrial_craft_2/iron_dust/index.html b/static/browse/industrial_craft_2/iron_dust/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/iron_dust/index.html rename to static/browse/industrial_craft_2/iron_dust/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/iron_fence.png b/static/browse/industrial_craft_2/iron_fence/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/iron_fence.png rename to static/browse/industrial_craft_2/iron_fence/icon.png diff --git a/prerender/browse/industrial_craft_2/iron_fence/index.html b/static/browse/industrial_craft_2/iron_fence/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/iron_fence/index.html rename to static/browse/industrial_craft_2/iron_fence/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/iron_furnace.png b/static/browse/industrial_craft_2/iron_furnace/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/iron_furnace.png rename to static/browse/industrial_craft_2/iron_furnace/icon.png diff --git a/prerender/browse/industrial_craft_2/iron_furnace/index.html b/static/browse/industrial_craft_2/iron_furnace/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/iron_furnace/index.html rename to static/browse/industrial_craft_2/iron_furnace/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/iron_item_casing.png b/static/browse/industrial_craft_2/iron_item_casing/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/iron_item_casing.png rename to static/browse/industrial_craft_2/iron_item_casing/icon.png diff --git a/prerender/browse/industrial_craft_2/iron_item_casing/index.html b/static/browse/industrial_craft_2/iron_item_casing/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/iron_item_casing/index.html rename to static/browse/industrial_craft_2/iron_item_casing/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/iron_plate.png b/static/browse/industrial_craft_2/iron_plate/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/iron_plate.png rename to static/browse/industrial_craft_2/iron_plate/icon.png diff --git a/prerender/browse/industrial_craft_2/iron_plate/index.html b/static/browse/industrial_craft_2/iron_plate/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/iron_plate/index.html rename to static/browse/industrial_craft_2/iron_plate/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/iron_rotor_blade.png b/static/browse/industrial_craft_2/iron_rotor_blade/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/iron_rotor_blade.png rename to static/browse/industrial_craft_2/iron_rotor_blade/icon.png diff --git a/prerender/browse/industrial_craft_2/iron_rotor_blade/index.html b/static/browse/industrial_craft_2/iron_rotor_blade/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/iron_rotor_blade/index.html rename to static/browse/industrial_craft_2/iron_rotor_blade/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/iron_scaffold.png b/static/browse/industrial_craft_2/iron_scaffold/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/iron_scaffold.png rename to static/browse/industrial_craft_2/iron_scaffold/icon.png diff --git a/prerender/browse/industrial_craft_2/iron_scaffold/index.html b/static/browse/industrial_craft_2/iron_scaffold/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/iron_scaffold/index.html rename to static/browse/industrial_craft_2/iron_scaffold/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/iron_turning_blank.png b/static/browse/industrial_craft_2/iron_turning_blank/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/iron_turning_blank.png rename to static/browse/industrial_craft_2/iron_turning_blank/icon.png diff --git a/prerender/browse/industrial_craft_2/iron_turning_blank/index.html b/static/browse/industrial_craft_2/iron_turning_blank/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/iron_turning_blank/index.html rename to static/browse/industrial_craft_2/iron_turning_blank/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/item_buffer.png b/static/browse/industrial_craft_2/item_buffer/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/item_buffer.png rename to static/browse/industrial_craft_2/item_buffer/icon.png diff --git a/prerender/browse/industrial_craft_2/item_buffer/index.html b/static/browse/industrial_craft_2/item_buffer/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/item_buffer/index.html rename to static/browse/industrial_craft_2/item_buffer/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/jetpack.png b/static/browse/industrial_craft_2/jetpack/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/jetpack.png rename to static/browse/industrial_craft_2/jetpack/icon.png diff --git a/prerender/browse/industrial_craft_2/jetpack/index.html b/static/browse/industrial_craft_2/jetpack/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/jetpack/index.html rename to static/browse/industrial_craft_2/jetpack/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/kinetic_generator.png b/static/browse/industrial_craft_2/kinetic_generator/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/kinetic_generator.png rename to static/browse/industrial_craft_2/kinetic_generator/icon.png diff --git a/prerender/browse/industrial_craft_2/kinetic_generator/index.html b/static/browse/industrial_craft_2/kinetic_generator/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/kinetic_generator/index.html rename to static/browse/industrial_craft_2/kinetic_generator/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/kinetic_steam_generator.png b/static/browse/industrial_craft_2/kinetic_steam_generator/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/kinetic_steam_generator.png rename to static/browse/industrial_craft_2/kinetic_steam_generator/icon.png diff --git a/prerender/browse/industrial_craft_2/kinetic_steam_generator/index.html b/static/browse/industrial_craft_2/kinetic_steam_generator/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/kinetic_steam_generator/index.html rename to static/browse/industrial_craft_2/kinetic_steam_generator/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/kinetic_wind_generator.png b/static/browse/industrial_craft_2/kinetic_wind_generator/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/kinetic_wind_generator.png rename to static/browse/industrial_craft_2/kinetic_wind_generator/icon.png diff --git a/prerender/browse/industrial_craft_2/kinetic_wind_generator/index.html b/static/browse/industrial_craft_2/kinetic_wind_generator/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/kinetic_wind_generator/index.html rename to static/browse/industrial_craft_2/kinetic_wind_generator/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/kinetic_wind_generator_rotor_carbon.png b/static/browse/industrial_craft_2/kinetic_wind_generator_rotor_carbon/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/kinetic_wind_generator_rotor_carbon.png rename to static/browse/industrial_craft_2/kinetic_wind_generator_rotor_carbon/icon.png diff --git a/prerender/browse/industrial_craft_2/kinetic_wind_generator_rotor_carbon/index.html b/static/browse/industrial_craft_2/kinetic_wind_generator_rotor_carbon/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/kinetic_wind_generator_rotor_carbon/index.html rename to static/browse/industrial_craft_2/kinetic_wind_generator_rotor_carbon/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/kinetic_wind_generator_rotor_iron.png b/static/browse/industrial_craft_2/kinetic_wind_generator_rotor_iron/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/kinetic_wind_generator_rotor_iron.png rename to static/browse/industrial_craft_2/kinetic_wind_generator_rotor_iron/icon.png diff --git a/prerender/browse/industrial_craft_2/kinetic_wind_generator_rotor_iron/index.html b/static/browse/industrial_craft_2/kinetic_wind_generator_rotor_iron/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/kinetic_wind_generator_rotor_iron/index.html rename to static/browse/industrial_craft_2/kinetic_wind_generator_rotor_iron/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/kinetic_wind_generator_rotor_steel.png b/static/browse/industrial_craft_2/kinetic_wind_generator_rotor_steel/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/kinetic_wind_generator_rotor_steel.png rename to static/browse/industrial_craft_2/kinetic_wind_generator_rotor_steel/icon.png diff --git a/prerender/browse/industrial_craft_2/kinetic_wind_generator_rotor_steel/index.html b/static/browse/industrial_craft_2/kinetic_wind_generator_rotor_steel/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/kinetic_wind_generator_rotor_steel/index.html rename to static/browse/industrial_craft_2/kinetic_wind_generator_rotor_steel/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/kinetic_wind_generator_rotor_wood.png b/static/browse/industrial_craft_2/kinetic_wind_generator_rotor_wood/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/kinetic_wind_generator_rotor_wood.png rename to static/browse/industrial_craft_2/kinetic_wind_generator_rotor_wood/icon.png diff --git a/prerender/browse/industrial_craft_2/kinetic_wind_generator_rotor_wood/index.html b/static/browse/industrial_craft_2/kinetic_wind_generator_rotor_wood/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/kinetic_wind_generator_rotor_wood/index.html rename to static/browse/industrial_craft_2/kinetic_wind_generator_rotor_wood/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/lapis_lazuli_dust.png b/static/browse/industrial_craft_2/lapis_lazuli_dust/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/lapis_lazuli_dust.png rename to static/browse/industrial_craft_2/lapis_lazuli_dust/icon.png diff --git a/prerender/browse/industrial_craft_2/lapis_lazuli_dust/index.html b/static/browse/industrial_craft_2/lapis_lazuli_dust/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/lapis_lazuli_dust/index.html rename to static/browse/industrial_craft_2/lapis_lazuli_dust/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/lapis_lazuli_plate.png b/static/browse/industrial_craft_2/lapis_lazuli_plate/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/lapis_lazuli_plate.png rename to static/browse/industrial_craft_2/lapis_lazuli_plate/icon.png diff --git a/prerender/browse/industrial_craft_2/lapis_lazuli_plate/index.html b/static/browse/industrial_craft_2/lapis_lazuli_plate/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/lapis_lazuli_plate/index.html rename to static/browse/industrial_craft_2/lapis_lazuli_plate/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/lapotron_crystal.png b/static/browse/industrial_craft_2/lapotron_crystal/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/lapotron_crystal.png rename to static/browse/industrial_craft_2/lapotron_crystal/icon.png diff --git a/prerender/browse/industrial_craft_2/lapotron_crystal/index.html b/static/browse/industrial_craft_2/lapotron_crystal/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/lapotron_crystal/index.html rename to static/browse/industrial_craft_2/lapotron_crystal/index.html diff --git a/prerender/browse/industrial_craft_2/lappack/index.html b/static/browse/industrial_craft_2/lappack/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/lappack/index.html rename to static/browse/industrial_craft_2/lappack/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/lathing_tool.png b/static/browse/industrial_craft_2/lathing_tool/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/lathing_tool.png rename to static/browse/industrial_craft_2/lathing_tool/icon.png diff --git a/prerender/browse/industrial_craft_2/lathing_tool/index.html b/static/browse/industrial_craft_2/lathing_tool/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/lathing_tool/index.html rename to static/browse/industrial_craft_2/lathing_tool/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/lava_cell.png b/static/browse/industrial_craft_2/lava_cell/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/lava_cell.png rename to static/browse/industrial_craft_2/lava_cell/icon.png diff --git a/prerender/browse/industrial_craft_2/lava_cell/index.html b/static/browse/industrial_craft_2/lava_cell/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/lava_cell/index.html rename to static/browse/industrial_craft_2/lava_cell/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/lead_block.png b/static/browse/industrial_craft_2/lead_block/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/lead_block.png rename to static/browse/industrial_craft_2/lead_block/icon.png diff --git a/prerender/browse/industrial_craft_2/lead_block/index.html b/static/browse/industrial_craft_2/lead_block/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/lead_block/index.html rename to static/browse/industrial_craft_2/lead_block/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/lead_dust.png b/static/browse/industrial_craft_2/lead_dust/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/lead_dust.png rename to static/browse/industrial_craft_2/lead_dust/icon.png diff --git a/prerender/browse/industrial_craft_2/lead_dust/index.html b/static/browse/industrial_craft_2/lead_dust/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/lead_dust/index.html rename to static/browse/industrial_craft_2/lead_dust/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/lead_ingot.png b/static/browse/industrial_craft_2/lead_ingot/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/lead_ingot.png rename to static/browse/industrial_craft_2/lead_ingot/icon.png diff --git a/prerender/browse/industrial_craft_2/lead_ingot/index.html b/static/browse/industrial_craft_2/lead_ingot/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/lead_ingot/index.html rename to static/browse/industrial_craft_2/lead_ingot/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/lead_item_casing.png b/static/browse/industrial_craft_2/lead_item_casing/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/lead_item_casing.png rename to static/browse/industrial_craft_2/lead_item_casing/icon.png diff --git a/prerender/browse/industrial_craft_2/lead_item_casing/index.html b/static/browse/industrial_craft_2/lead_item_casing/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/lead_item_casing/index.html rename to static/browse/industrial_craft_2/lead_item_casing/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/lead_ore.png b/static/browse/industrial_craft_2/lead_ore/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/lead_ore.png rename to static/browse/industrial_craft_2/lead_ore/icon.png diff --git a/prerender/browse/industrial_craft_2/lead_ore/index.html b/static/browse/industrial_craft_2/lead_ore/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/lead_ore/index.html rename to static/browse/industrial_craft_2/lead_ore/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/lead_plate.png b/static/browse/industrial_craft_2/lead_plate/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/lead_plate.png rename to static/browse/industrial_craft_2/lead_plate/icon.png diff --git a/prerender/browse/industrial_craft_2/lead_plate/index.html b/static/browse/industrial_craft_2/lead_plate/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/lead_plate/index.html rename to static/browse/industrial_craft_2/lead_plate/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/light_blue_painter.png b/static/browse/industrial_craft_2/light_blue_painter/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/light_blue_painter.png rename to static/browse/industrial_craft_2/light_blue_painter/icon.png diff --git a/prerender/browse/industrial_craft_2/light_blue_painter/index.html b/static/browse/industrial_craft_2/light_blue_painter/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/light_blue_painter/index.html rename to static/browse/industrial_craft_2/light_blue_painter/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/light_grey_painter.png b/static/browse/industrial_craft_2/light_grey_painter/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/light_grey_painter.png rename to static/browse/industrial_craft_2/light_grey_painter/icon.png diff --git a/prerender/browse/industrial_craft_2/light_grey_painter/index.html b/static/browse/industrial_craft_2/light_grey_painter/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/light_grey_painter/index.html rename to static/browse/industrial_craft_2/light_grey_painter/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/lime_painter.png b/static/browse/industrial_craft_2/lime_painter/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/lime_painter.png rename to static/browse/industrial_craft_2/lime_painter/icon.png diff --git a/prerender/browse/industrial_craft_2/lime_painter/index.html b/static/browse/industrial_craft_2/lime_painter/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/lime_painter/index.html rename to static/browse/industrial_craft_2/lime_painter/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/liquid_heat_exchanger.png b/static/browse/industrial_craft_2/liquid_heat_exchanger/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/liquid_heat_exchanger.png rename to static/browse/industrial_craft_2/liquid_heat_exchanger/icon.png diff --git a/prerender/browse/industrial_craft_2/liquid_heat_exchanger/index.html b/static/browse/industrial_craft_2/liquid_heat_exchanger/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/liquid_heat_exchanger/index.html rename to static/browse/industrial_craft_2/liquid_heat_exchanger/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/lithium_dust.png b/static/browse/industrial_craft_2/lithium_dust/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/lithium_dust.png rename to static/browse/industrial_craft_2/lithium_dust/icon.png diff --git a/prerender/browse/industrial_craft_2/lithium_dust/index.html b/static/browse/industrial_craft_2/lithium_dust/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/lithium_dust/index.html rename to static/browse/industrial_craft_2/lithium_dust/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/luminator.png b/static/browse/industrial_craft_2/luminator/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/luminator.png rename to static/browse/industrial_craft_2/luminator/icon.png diff --git a/prerender/browse/industrial_craft_2/luminator/index.html b/static/browse/industrial_craft_2/luminator/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/luminator/index.html rename to static/browse/industrial_craft_2/luminator/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/lv_transformer.png b/static/browse/industrial_craft_2/lv_transformer/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/lv_transformer.png rename to static/browse/industrial_craft_2/lv_transformer/icon.png diff --git a/prerender/browse/industrial_craft_2/lv_transformer/index.html b/static/browse/industrial_craft_2/lv_transformer/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/lv_transformer/index.html rename to static/browse/industrial_craft_2/lv_transformer/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/lzh_condensator.png b/static/browse/industrial_craft_2/lzh_condensator/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/lzh_condensator.png rename to static/browse/industrial_craft_2/lzh_condensator/icon.png diff --git a/prerender/browse/industrial_craft_2/lzh_condensator/index.html b/static/browse/industrial_craft_2/lzh_condensator/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/lzh_condensator/index.html rename to static/browse/industrial_craft_2/lzh_condensator/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/macerator.png b/static/browse/industrial_craft_2/macerator/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/macerator.png rename to static/browse/industrial_craft_2/macerator/icon.png diff --git a/prerender/browse/industrial_craft_2/macerator/index.html b/static/browse/industrial_craft_2/macerator/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/macerator/index.html rename to static/browse/industrial_craft_2/macerator/index.html diff --git a/prerender/browse/industrial_craft_2/machine_block/index.html b/static/browse/industrial_craft_2/machine_block/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/machine_block/index.html rename to static/browse/industrial_craft_2/machine_block/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/magenta_painter.png b/static/browse/industrial_craft_2/magenta_painter/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/magenta_painter.png rename to static/browse/industrial_craft_2/magenta_painter/icon.png diff --git a/prerender/browse/industrial_craft_2/magenta_painter/index.html b/static/browse/industrial_craft_2/magenta_painter/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/magenta_painter/index.html rename to static/browse/industrial_craft_2/magenta_painter/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/magnetizer.png b/static/browse/industrial_craft_2/magnetizer/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/magnetizer.png rename to static/browse/industrial_craft_2/magnetizer/icon.png diff --git a/prerender/browse/industrial_craft_2/magnetizer/index.html b/static/browse/industrial_craft_2/magnetizer/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/magnetizer/index.html rename to static/browse/industrial_craft_2/magnetizer/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/manual_kinetic_generator.png b/static/browse/industrial_craft_2/manual_kinetic_generator/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/manual_kinetic_generator.png rename to static/browse/industrial_craft_2/manual_kinetic_generator/icon.png diff --git a/prerender/browse/industrial_craft_2/manual_kinetic_generator/index.html b/static/browse/industrial_craft_2/manual_kinetic_generator/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/manual_kinetic_generator/index.html rename to static/browse/industrial_craft_2/manual_kinetic_generator/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/mass_fabricator.png b/static/browse/industrial_craft_2/mass_fabricator/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/mass_fabricator.png rename to static/browse/industrial_craft_2/mass_fabricator/icon.png diff --git a/prerender/browse/industrial_craft_2/mass_fabricator/index.html b/static/browse/industrial_craft_2/mass_fabricator/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/mass_fabricator/index.html rename to static/browse/industrial_craft_2/mass_fabricator/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/melon_seeds.png b/static/browse/industrial_craft_2/melon_seeds/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/melon_seeds.png rename to static/browse/industrial_craft_2/melon_seeds/icon.png diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/metal_former.png b/static/browse/industrial_craft_2/metal_former/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/metal_former.png rename to static/browse/industrial_craft_2/metal_former/icon.png diff --git a/prerender/browse/industrial_craft_2/metal_former/index.html b/static/browse/industrial_craft_2/metal_former/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/metal_former/index.html rename to static/browse/industrial_craft_2/metal_former/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/mfe.png b/static/browse/industrial_craft_2/mfe/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/mfe.png rename to static/browse/industrial_craft_2/mfe/icon.png diff --git a/prerender/browse/industrial_craft_2/mfe/index.html b/static/browse/industrial_craft_2/mfe/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/mfe/index.html rename to static/browse/industrial_craft_2/mfe/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/mfsu.png b/static/browse/industrial_craft_2/mfsu/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/mfsu.png rename to static/browse/industrial_craft_2/mfsu/icon.png diff --git a/prerender/browse/industrial_craft_2/mfsu/index.html b/static/browse/industrial_craft_2/mfsu/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/mfsu/index.html rename to static/browse/industrial_craft_2/mfsu/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/mfsu_upgrade_kit.png b/static/browse/industrial_craft_2/mfsu_upgrade_kit/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/mfsu_upgrade_kit.png rename to static/browse/industrial_craft_2/mfsu_upgrade_kit/icon.png diff --git a/prerender/browse/industrial_craft_2/mfsu_upgrade_kit/index.html b/static/browse/industrial_craft_2/mfsu_upgrade_kit/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/mfsu_upgrade_kit/index.html rename to static/browse/industrial_craft_2/mfsu_upgrade_kit/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/miner.png b/static/browse/industrial_craft_2/miner/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/miner.png rename to static/browse/industrial_craft_2/miner/icon.png diff --git a/prerender/browse/industrial_craft_2/miner/index.html b/static/browse/industrial_craft_2/miner/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/miner/index.html rename to static/browse/industrial_craft_2/miner/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/mining_drill.png b/static/browse/industrial_craft_2/mining_drill/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/mining_drill.png rename to static/browse/industrial_craft_2/mining_drill/icon.png diff --git a/prerender/browse/industrial_craft_2/mining_drill/index.html b/static/browse/industrial_craft_2/mining_drill/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/mining_drill/index.html rename to static/browse/industrial_craft_2/mining_drill/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/mining_laser.png b/static/browse/industrial_craft_2/mining_laser/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/mining_laser.png rename to static/browse/industrial_craft_2/mining_laser/icon.png diff --git a/prerender/browse/industrial_craft_2/mining_laser/index.html b/static/browse/industrial_craft_2/mining_laser/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/mining_laser/index.html rename to static/browse/industrial_craft_2/mining_laser/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/mining_pipe.png b/static/browse/industrial_craft_2/mining_pipe/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/mining_pipe.png rename to static/browse/industrial_craft_2/mining_pipe/icon.png diff --git a/prerender/browse/industrial_craft_2/mining_pipe/index.html b/static/browse/industrial_craft_2/mining_pipe/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/mining_pipe/index.html rename to static/browse/industrial_craft_2/mining_pipe/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/mixed_metal_ingot.png b/static/browse/industrial_craft_2/mixed_metal_ingot/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/mixed_metal_ingot.png rename to static/browse/industrial_craft_2/mixed_metal_ingot/icon.png diff --git a/prerender/browse/industrial_craft_2/mixed_metal_ingot/index.html b/static/browse/industrial_craft_2/mixed_metal_ingot/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/mixed_metal_ingot/index.html rename to static/browse/industrial_craft_2/mixed_metal_ingot/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/mox_nuclear_fuel.png b/static/browse/industrial_craft_2/mox_nuclear_fuel/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/mox_nuclear_fuel.png rename to static/browse/industrial_craft_2/mox_nuclear_fuel/icon.png diff --git a/prerender/browse/industrial_craft_2/mox_nuclear_fuel/index.html b/static/browse/industrial_craft_2/mox_nuclear_fuel/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/mox_nuclear_fuel/index.html rename to static/browse/industrial_craft_2/mox_nuclear_fuel/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/mv_transformer.png b/static/browse/industrial_craft_2/mv_transformer/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/mv_transformer.png rename to static/browse/industrial_craft_2/mv_transformer/icon.png diff --git a/prerender/browse/industrial_craft_2/mv_transformer/index.html b/static/browse/industrial_craft_2/mv_transformer/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/mv_transformer/index.html rename to static/browse/industrial_craft_2/mv_transformer/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/nano_saber.png b/static/browse/industrial_craft_2/nano_saber/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/nano_saber.png rename to static/browse/industrial_craft_2/nano_saber/icon.png diff --git a/prerender/browse/industrial_craft_2/nano_saber/index.html b/static/browse/industrial_craft_2/nano_saber/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/nano_saber/index.html rename to static/browse/industrial_craft_2/nano_saber/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/nanosuit_bodyarmor.png b/static/browse/industrial_craft_2/nanosuit_bodyarmor/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/nanosuit_bodyarmor.png rename to static/browse/industrial_craft_2/nanosuit_bodyarmor/icon.png diff --git a/prerender/browse/industrial_craft_2/nanosuit_bodyarmor/index.html b/static/browse/industrial_craft_2/nanosuit_bodyarmor/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/nanosuit_bodyarmor/index.html rename to static/browse/industrial_craft_2/nanosuit_bodyarmor/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/nanosuit_boots.png b/static/browse/industrial_craft_2/nanosuit_boots/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/nanosuit_boots.png rename to static/browse/industrial_craft_2/nanosuit_boots/icon.png diff --git a/prerender/browse/industrial_craft_2/nanosuit_boots/index.html b/static/browse/industrial_craft_2/nanosuit_boots/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/nanosuit_boots/index.html rename to static/browse/industrial_craft_2/nanosuit_boots/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/nanosuit_helmet.png b/static/browse/industrial_craft_2/nanosuit_helmet/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/nanosuit_helmet.png rename to static/browse/industrial_craft_2/nanosuit_helmet/icon.png diff --git a/prerender/browse/industrial_craft_2/nanosuit_helmet/index.html b/static/browse/industrial_craft_2/nanosuit_helmet/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/nanosuit_helmet/index.html rename to static/browse/industrial_craft_2/nanosuit_helmet/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/nanosuit_leggings.png b/static/browse/industrial_craft_2/nanosuit_leggings/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/nanosuit_leggings.png rename to static/browse/industrial_craft_2/nanosuit_leggings/icon.png diff --git a/prerender/browse/industrial_craft_2/nanosuit_leggings/index.html b/static/browse/industrial_craft_2/nanosuit_leggings/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/nanosuit_leggings/index.html rename to static/browse/industrial_craft_2/nanosuit_leggings/index.html diff --git a/prerender/browse/industrial_craft_2/near_depleted_uranium_cell/index.html b/static/browse/industrial_craft_2/near_depleted_uranium_cell/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/near_depleted_uranium_cell/index.html rename to static/browse/industrial_craft_2/near_depleted_uranium_cell/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/nether_wart_seeds.png b/static/browse/industrial_craft_2/nether_wart_seeds/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/nether_wart_seeds.png rename to static/browse/industrial_craft_2/nether_wart_seeds/icon.png diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/neutron_reflector.png b/static/browse/industrial_craft_2/neutron_reflector/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/neutron_reflector.png rename to static/browse/industrial_craft_2/neutron_reflector/icon.png diff --git a/prerender/browse/industrial_craft_2/neutron_reflector/index.html b/static/browse/industrial_craft_2/neutron_reflector/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/neutron_reflector/index.html rename to static/browse/industrial_craft_2/neutron_reflector/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/nightvision_goggles.png b/static/browse/industrial_craft_2/nightvision_goggles/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/nightvision_goggles.png rename to static/browse/industrial_craft_2/nightvision_goggles/icon.png diff --git a/prerender/browse/industrial_craft_2/nightvision_goggles/index.html b/static/browse/industrial_craft_2/nightvision_goggles/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/nightvision_goggles/index.html rename to static/browse/industrial_craft_2/nightvision_goggles/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/nuclear_reactor.png b/static/browse/industrial_craft_2/nuclear_reactor/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/nuclear_reactor.png rename to static/browse/industrial_craft_2/nuclear_reactor/icon.png diff --git a/prerender/browse/industrial_craft_2/nuclear_reactor/index.html b/static/browse/industrial_craft_2/nuclear_reactor/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/nuclear_reactor/index.html rename to static/browse/industrial_craft_2/nuclear_reactor/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/nuke.png b/static/browse/industrial_craft_2/nuke/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/nuke.png rename to static/browse/industrial_craft_2/nuke/icon.png diff --git a/prerender/browse/industrial_craft_2/nuke/index.html b/static/browse/industrial_craft_2/nuke/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/nuke/index.html rename to static/browse/industrial_craft_2/nuke/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/obscurator.png b/static/browse/industrial_craft_2/obscurator/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/obscurator.png rename to static/browse/industrial_craft_2/obscurator/icon.png diff --git a/prerender/browse/industrial_craft_2/obscurator/index.html b/static/browse/industrial_craft_2/obscurator/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/obscurator/index.html rename to static/browse/industrial_craft_2/obscurator/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/obsidian_dust.png b/static/browse/industrial_craft_2/obsidian_dust/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/obsidian_dust.png rename to static/browse/industrial_craft_2/obsidian_dust/icon.png diff --git a/prerender/browse/industrial_craft_2/obsidian_dust/index.html b/static/browse/industrial_craft_2/obsidian_dust/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/obsidian_dust/index.html rename to static/browse/industrial_craft_2/obsidian_dust/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/obsidian_plate.png b/static/browse/industrial_craft_2/obsidian_plate/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/obsidian_plate.png rename to static/browse/industrial_craft_2/obsidian_plate/icon.png diff --git a/prerender/browse/industrial_craft_2/obsidian_plate/index.html b/static/browse/industrial_craft_2/obsidian_plate/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/obsidian_plate/index.html rename to static/browse/industrial_craft_2/obsidian_plate/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/od_scanner.png b/static/browse/industrial_craft_2/od_scanner/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/od_scanner.png rename to static/browse/industrial_craft_2/od_scanner/icon.png diff --git a/prerender/browse/industrial_craft_2/od_scanner/index.html b/static/browse/industrial_craft_2/od_scanner/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/od_scanner/index.html rename to static/browse/industrial_craft_2/od_scanner/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/orange_painter.png b/static/browse/industrial_craft_2/orange_painter/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/orange_painter.png rename to static/browse/industrial_craft_2/orange_painter/icon.png diff --git a/prerender/browse/industrial_craft_2/orange_painter/index.html b/static/browse/industrial_craft_2/orange_painter/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/orange_painter/index.html rename to static/browse/industrial_craft_2/orange_painter/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/ore_washing_plant.png b/static/browse/industrial_craft_2/ore_washing_plant/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/ore_washing_plant.png rename to static/browse/industrial_craft_2/ore_washing_plant/icon.png diff --git a/prerender/browse/industrial_craft_2/ore_washing_plant/index.html b/static/browse/industrial_craft_2/ore_washing_plant/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/ore_washing_plant/index.html rename to static/browse/industrial_craft_2/ore_washing_plant/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/ov_scanner.png b/static/browse/industrial_craft_2/ov_scanner/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/ov_scanner.png rename to static/browse/industrial_craft_2/ov_scanner/icon.png diff --git a/prerender/browse/industrial_craft_2/ov_scanner/index.html b/static/browse/industrial_craft_2/ov_scanner/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/ov_scanner/index.html rename to static/browse/industrial_craft_2/ov_scanner/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/overclocked_heat_vent.png b/static/browse/industrial_craft_2/overclocked_heat_vent/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/overclocked_heat_vent.png rename to static/browse/industrial_craft_2/overclocked_heat_vent/icon.png diff --git a/prerender/browse/industrial_craft_2/overclocked_heat_vent/index.html b/static/browse/industrial_craft_2/overclocked_heat_vent/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/overclocked_heat_vent/index.html rename to static/browse/industrial_craft_2/overclocked_heat_vent/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/overclocker_upgrade.png b/static/browse/industrial_craft_2/overclocker_upgrade/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/overclocker_upgrade.png rename to static/browse/industrial_craft_2/overclocker_upgrade/icon.png diff --git a/prerender/browse/industrial_craft_2/overclocker_upgrade/index.html b/static/browse/industrial_craft_2/overclocker_upgrade/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/overclocker_upgrade/index.html rename to static/browse/industrial_craft_2/overclocker_upgrade/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/pahoehoe_lava.png b/static/browse/industrial_craft_2/pahoehoe_lava/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/pahoehoe_lava.png rename to static/browse/industrial_craft_2/pahoehoe_lava/icon.png diff --git a/prerender/browse/industrial_craft_2/pahoehoe_lava/index.html b/static/browse/industrial_craft_2/pahoehoe_lava/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/pahoehoe_lava/index.html rename to static/browse/industrial_craft_2/pahoehoe_lava/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/pahoehoe_lava_cell.png b/static/browse/industrial_craft_2/pahoehoe_lava_cell/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/pahoehoe_lava_cell.png rename to static/browse/industrial_craft_2/pahoehoe_lava_cell/icon.png diff --git a/prerender/browse/industrial_craft_2/pahoehoe_lava_cell/index.html b/static/browse/industrial_craft_2/pahoehoe_lava_cell/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/pahoehoe_lava_cell/index.html rename to static/browse/industrial_craft_2/pahoehoe_lava_cell/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/painter.png b/static/browse/industrial_craft_2/painter/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/painter.png rename to static/browse/industrial_craft_2/painter/icon.png diff --git a/prerender/browse/industrial_craft_2/painter/index.html b/static/browse/industrial_craft_2/painter/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/painter/index.html rename to static/browse/industrial_craft_2/painter/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/pattern_storage.png b/static/browse/industrial_craft_2/pattern_storage/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/pattern_storage.png rename to static/browse/industrial_craft_2/pattern_storage/icon.png diff --git a/prerender/browse/industrial_craft_2/pattern_storage/index.html b/static/browse/industrial_craft_2/pattern_storage/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/pattern_storage/index.html rename to static/browse/industrial_craft_2/pattern_storage/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/pellets_of_rtg_fuel.png b/static/browse/industrial_craft_2/pellets_of_rtg_fuel/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/pellets_of_rtg_fuel.png rename to static/browse/industrial_craft_2/pellets_of_rtg_fuel/icon.png diff --git a/prerender/browse/industrial_craft_2/pellets_of_rtg_fuel/index.html b/static/browse/industrial_craft_2/pellets_of_rtg_fuel/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/pellets_of_rtg_fuel/index.html rename to static/browse/industrial_craft_2/pellets_of_rtg_fuel/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/personal_safe.png b/static/browse/industrial_craft_2/personal_safe/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/personal_safe.png rename to static/browse/industrial_craft_2/personal_safe/icon.png diff --git a/prerender/browse/industrial_craft_2/personal_safe/index.html b/static/browse/industrial_craft_2/personal_safe/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/personal_safe/index.html rename to static/browse/industrial_craft_2/personal_safe/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/pink_painter.png b/static/browse/industrial_craft_2/pink_painter/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/pink_painter.png rename to static/browse/industrial_craft_2/pink_painter/icon.png diff --git a/prerender/browse/industrial_craft_2/pink_painter/index.html b/static/browse/industrial_craft_2/pink_painter/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/pink_painter/index.html rename to static/browse/industrial_craft_2/pink_painter/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/plantball.png b/static/browse/industrial_craft_2/plantball/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/plantball.png rename to static/browse/industrial_craft_2/plantball/icon.png diff --git a/prerender/browse/industrial_craft_2/plantball/index.html b/static/browse/industrial_craft_2/plantball/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/plantball/index.html rename to static/browse/industrial_craft_2/plantball/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/plutonium.png b/static/browse/industrial_craft_2/plutonium/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/plutonium.png rename to static/browse/industrial_craft_2/plutonium/icon.png diff --git a/prerender/browse/industrial_craft_2/plutonium/index.html b/static/browse/industrial_craft_2/plutonium/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/plutonium/index.html rename to static/browse/industrial_craft_2/plutonium/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/potato_seeds.png b/static/browse/industrial_craft_2/potato_seeds/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/potato_seeds.png rename to static/browse/industrial_craft_2/potato_seeds/icon.png diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/power_unit.png b/static/browse/industrial_craft_2/power_unit/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/power_unit.png rename to static/browse/industrial_craft_2/power_unit/icon.png diff --git a/prerender/browse/industrial_craft_2/power_unit/index.html b/static/browse/industrial_craft_2/power_unit/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/power_unit/index.html rename to static/browse/industrial_craft_2/power_unit/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/pump.png b/static/browse/industrial_craft_2/pump/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/pump.png rename to static/browse/industrial_craft_2/pump/icon.png diff --git a/prerender/browse/industrial_craft_2/pump/index.html b/static/browse/industrial_craft_2/pump/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/pump/index.html rename to static/browse/industrial_craft_2/pump/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/pumpkin_seeds.png b/static/browse/industrial_craft_2/pumpkin_seeds/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/pumpkin_seeds.png rename to static/browse/industrial_craft_2/pumpkin_seeds/icon.png diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/purified_crushed_copper_ore.png b/static/browse/industrial_craft_2/purified_crushed_copper_ore/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/purified_crushed_copper_ore.png rename to static/browse/industrial_craft_2/purified_crushed_copper_ore/icon.png diff --git a/prerender/browse/industrial_craft_2/purified_crushed_copper_ore/index.html b/static/browse/industrial_craft_2/purified_crushed_copper_ore/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/purified_crushed_copper_ore/index.html rename to static/browse/industrial_craft_2/purified_crushed_copper_ore/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/purified_crushed_gold_ore.png b/static/browse/industrial_craft_2/purified_crushed_gold_ore/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/purified_crushed_gold_ore.png rename to static/browse/industrial_craft_2/purified_crushed_gold_ore/icon.png diff --git a/prerender/browse/industrial_craft_2/purified_crushed_gold_ore/index.html b/static/browse/industrial_craft_2/purified_crushed_gold_ore/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/purified_crushed_gold_ore/index.html rename to static/browse/industrial_craft_2/purified_crushed_gold_ore/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/purified_crushed_iron_ore.png b/static/browse/industrial_craft_2/purified_crushed_iron_ore/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/purified_crushed_iron_ore.png rename to static/browse/industrial_craft_2/purified_crushed_iron_ore/icon.png diff --git a/prerender/browse/industrial_craft_2/purified_crushed_iron_ore/index.html b/static/browse/industrial_craft_2/purified_crushed_iron_ore/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/purified_crushed_iron_ore/index.html rename to static/browse/industrial_craft_2/purified_crushed_iron_ore/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/purified_crushed_lead_ore.png b/static/browse/industrial_craft_2/purified_crushed_lead_ore/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/purified_crushed_lead_ore.png rename to static/browse/industrial_craft_2/purified_crushed_lead_ore/icon.png diff --git a/prerender/browse/industrial_craft_2/purified_crushed_lead_ore/index.html b/static/browse/industrial_craft_2/purified_crushed_lead_ore/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/purified_crushed_lead_ore/index.html rename to static/browse/industrial_craft_2/purified_crushed_lead_ore/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/purified_crushed_silver_ore.png b/static/browse/industrial_craft_2/purified_crushed_silver_ore/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/purified_crushed_silver_ore.png rename to static/browse/industrial_craft_2/purified_crushed_silver_ore/icon.png diff --git a/prerender/browse/industrial_craft_2/purified_crushed_silver_ore/index.html b/static/browse/industrial_craft_2/purified_crushed_silver_ore/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/purified_crushed_silver_ore/index.html rename to static/browse/industrial_craft_2/purified_crushed_silver_ore/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/purified_crushed_tin_ore.png b/static/browse/industrial_craft_2/purified_crushed_tin_ore/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/purified_crushed_tin_ore.png rename to static/browse/industrial_craft_2/purified_crushed_tin_ore/icon.png diff --git a/prerender/browse/industrial_craft_2/purified_crushed_tin_ore/index.html b/static/browse/industrial_craft_2/purified_crushed_tin_ore/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/purified_crushed_tin_ore/index.html rename to static/browse/industrial_craft_2/purified_crushed_tin_ore/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/purified_crushed_uranium_ore.png b/static/browse/industrial_craft_2/purified_crushed_uranium_ore/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/purified_crushed_uranium_ore.png rename to static/browse/industrial_craft_2/purified_crushed_uranium_ore/icon.png diff --git a/prerender/browse/industrial_craft_2/purified_crushed_uranium_ore/index.html b/static/browse/industrial_craft_2/purified_crushed_uranium_ore/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/purified_crushed_uranium_ore/index.html rename to static/browse/industrial_craft_2/purified_crushed_uranium_ore/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/purple_painter.png b/static/browse/industrial_craft_2/purple_painter/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/purple_painter.png rename to static/browse/industrial_craft_2/purple_painter/icon.png diff --git a/prerender/browse/industrial_craft_2/purple_painter/index.html b/static/browse/industrial_craft_2/purple_painter/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/purple_painter/index.html rename to static/browse/industrial_craft_2/purple_painter/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/quad_fuel_rod_depleted_mox.png b/static/browse/industrial_craft_2/quad_fuel_rod_depleted_mox/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/quad_fuel_rod_depleted_mox.png rename to static/browse/industrial_craft_2/quad_fuel_rod_depleted_mox/icon.png diff --git a/prerender/browse/industrial_craft_2/quad_fuel_rod_depleted_mox/index.html b/static/browse/industrial_craft_2/quad_fuel_rod_depleted_mox/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/quad_fuel_rod_depleted_mox/index.html rename to static/browse/industrial_craft_2/quad_fuel_rod_depleted_mox/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/quad_fuel_rod_depleted_uranium.png b/static/browse/industrial_craft_2/quad_fuel_rod_depleted_uranium/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/quad_fuel_rod_depleted_uranium.png rename to static/browse/industrial_craft_2/quad_fuel_rod_depleted_uranium/icon.png diff --git a/prerender/browse/industrial_craft_2/quad_fuel_rod_depleted_uranium/index.html b/static/browse/industrial_craft_2/quad_fuel_rod_depleted_uranium/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/quad_fuel_rod_depleted_uranium/index.html rename to static/browse/industrial_craft_2/quad_fuel_rod_depleted_uranium/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/quad_fuel_rod_mox.png b/static/browse/industrial_craft_2/quad_fuel_rod_mox/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/quad_fuel_rod_mox.png rename to static/browse/industrial_craft_2/quad_fuel_rod_mox/icon.png diff --git a/prerender/browse/industrial_craft_2/quad_fuel_rod_mox/index.html b/static/browse/industrial_craft_2/quad_fuel_rod_mox/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/quad_fuel_rod_mox/index.html rename to static/browse/industrial_craft_2/quad_fuel_rod_mox/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/quad_fuel_rod_uranium.png b/static/browse/industrial_craft_2/quad_fuel_rod_uranium/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/quad_fuel_rod_uranium.png rename to static/browse/industrial_craft_2/quad_fuel_rod_uranium/icon.png diff --git a/prerender/browse/industrial_craft_2/quad_fuel_rod_uranium/index.html b/static/browse/industrial_craft_2/quad_fuel_rod_uranium/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/quad_fuel_rod_uranium/index.html rename to static/browse/industrial_craft_2/quad_fuel_rod_uranium/index.html diff --git a/prerender/browse/industrial_craft_2/quad_uranium_cell/index.html b/static/browse/industrial_craft_2/quad_uranium_cell/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/quad_uranium_cell/index.html rename to static/browse/industrial_craft_2/quad_uranium_cell/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/quantumsuit_bodyarmor.png b/static/browse/industrial_craft_2/quantumsuit_bodyarmor/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/quantumsuit_bodyarmor.png rename to static/browse/industrial_craft_2/quantumsuit_bodyarmor/icon.png diff --git a/prerender/browse/industrial_craft_2/quantumsuit_bodyarmor/index.html b/static/browse/industrial_craft_2/quantumsuit_bodyarmor/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/quantumsuit_bodyarmor/index.html rename to static/browse/industrial_craft_2/quantumsuit_bodyarmor/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/quantumsuit_boots.png b/static/browse/industrial_craft_2/quantumsuit_boots/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/quantumsuit_boots.png rename to static/browse/industrial_craft_2/quantumsuit_boots/icon.png diff --git a/prerender/browse/industrial_craft_2/quantumsuit_boots/index.html b/static/browse/industrial_craft_2/quantumsuit_boots/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/quantumsuit_boots/index.html rename to static/browse/industrial_craft_2/quantumsuit_boots/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/quantumsuit_helmet.png b/static/browse/industrial_craft_2/quantumsuit_helmet/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/quantumsuit_helmet.png rename to static/browse/industrial_craft_2/quantumsuit_helmet/icon.png diff --git a/prerender/browse/industrial_craft_2/quantumsuit_helmet/index.html b/static/browse/industrial_craft_2/quantumsuit_helmet/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/quantumsuit_helmet/index.html rename to static/browse/industrial_craft_2/quantumsuit_helmet/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/quantumsuit_leggings.png b/static/browse/industrial_craft_2/quantumsuit_leggings/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/quantumsuit_leggings.png rename to static/browse/industrial_craft_2/quantumsuit_leggings/icon.png diff --git a/prerender/browse/industrial_craft_2/quantumsuit_leggings/index.html b/static/browse/industrial_craft_2/quantumsuit_leggings/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/quantumsuit_leggings/index.html rename to static/browse/industrial_craft_2/quantumsuit_leggings/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/radioisotope_heat_generator.png b/static/browse/industrial_craft_2/radioisotope_heat_generator/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/radioisotope_heat_generator.png rename to static/browse/industrial_craft_2/radioisotope_heat_generator/icon.png diff --git a/prerender/browse/industrial_craft_2/radioisotope_heat_generator/index.html b/static/browse/industrial_craft_2/radioisotope_heat_generator/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/radioisotope_heat_generator/index.html rename to static/browse/industrial_craft_2/radioisotope_heat_generator/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/radioisotope_thermoelectric_generator.png b/static/browse/industrial_craft_2/radioisotope_thermoelectric_generator/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/radioisotope_thermoelectric_generator.png rename to static/browse/industrial_craft_2/radioisotope_thermoelectric_generator/icon.png diff --git a/prerender/browse/industrial_craft_2/radioisotope_thermoelectric_generator/index.html b/static/browse/industrial_craft_2/radioisotope_thermoelectric_generator/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/radioisotope_thermoelectric_generator/index.html rename to static/browse/industrial_craft_2/radioisotope_thermoelectric_generator/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/raw_carbon_fibre.png b/static/browse/industrial_craft_2/raw_carbon_fibre/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/raw_carbon_fibre.png rename to static/browse/industrial_craft_2/raw_carbon_fibre/icon.png diff --git a/prerender/browse/industrial_craft_2/raw_carbon_fibre/index.html b/static/browse/industrial_craft_2/raw_carbon_fibre/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/raw_carbon_fibre/index.html rename to static/browse/industrial_craft_2/raw_carbon_fibre/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/raw_carbon_mesh.png b/static/browse/industrial_craft_2/raw_carbon_mesh/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/raw_carbon_mesh.png rename to static/browse/industrial_craft_2/raw_carbon_mesh/icon.png diff --git a/prerender/browse/industrial_craft_2/raw_carbon_mesh/index.html b/static/browse/industrial_craft_2/raw_carbon_mesh/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/raw_carbon_mesh/index.html rename to static/browse/industrial_craft_2/raw_carbon_mesh/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/re_battery.png b/static/browse/industrial_craft_2/re_battery/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/re_battery.png rename to static/browse/industrial_craft_2/re_battery/icon.png diff --git a/prerender/browse/industrial_craft_2/re_battery/index.html b/static/browse/industrial_craft_2/re_battery/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/re_battery/index.html rename to static/browse/industrial_craft_2/re_battery/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/reactor_access_hatch.png b/static/browse/industrial_craft_2/reactor_access_hatch/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/reactor_access_hatch.png rename to static/browse/industrial_craft_2/reactor_access_hatch/icon.png diff --git a/prerender/browse/industrial_craft_2/reactor_access_hatch/index.html b/static/browse/industrial_craft_2/reactor_access_hatch/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/reactor_access_hatch/index.html rename to static/browse/industrial_craft_2/reactor_access_hatch/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/reactor_chamber.png b/static/browse/industrial_craft_2/reactor_chamber/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/reactor_chamber.png rename to static/browse/industrial_craft_2/reactor_chamber/icon.png diff --git a/prerender/browse/industrial_craft_2/reactor_chamber/index.html b/static/browse/industrial_craft_2/reactor_chamber/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/reactor_chamber/index.html rename to static/browse/industrial_craft_2/reactor_chamber/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/reactor_fluid_port.png b/static/browse/industrial_craft_2/reactor_fluid_port/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/reactor_fluid_port.png rename to static/browse/industrial_craft_2/reactor_fluid_port/icon.png diff --git a/prerender/browse/industrial_craft_2/reactor_fluid_port/index.html b/static/browse/industrial_craft_2/reactor_fluid_port/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/reactor_fluid_port/index.html rename to static/browse/industrial_craft_2/reactor_fluid_port/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/reactor_heat_exchanger.png b/static/browse/industrial_craft_2/reactor_heat_exchanger/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/reactor_heat_exchanger.png rename to static/browse/industrial_craft_2/reactor_heat_exchanger/icon.png diff --git a/prerender/browse/industrial_craft_2/reactor_heat_exchanger/index.html b/static/browse/industrial_craft_2/reactor_heat_exchanger/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/reactor_heat_exchanger/index.html rename to static/browse/industrial_craft_2/reactor_heat_exchanger/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/reactor_heat_vent.png b/static/browse/industrial_craft_2/reactor_heat_vent/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/reactor_heat_vent.png rename to static/browse/industrial_craft_2/reactor_heat_vent/icon.png diff --git a/prerender/browse/industrial_craft_2/reactor_heat_vent/index.html b/static/browse/industrial_craft_2/reactor_heat_vent/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/reactor_heat_vent/index.html rename to static/browse/industrial_craft_2/reactor_heat_vent/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/reactor_plating.png b/static/browse/industrial_craft_2/reactor_plating/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/reactor_plating.png rename to static/browse/industrial_craft_2/reactor_plating/icon.png diff --git a/prerender/browse/industrial_craft_2/reactor_plating/index.html b/static/browse/industrial_craft_2/reactor_plating/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/reactor_plating/index.html rename to static/browse/industrial_craft_2/reactor_plating/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/reactor_pressure_vessel.png b/static/browse/industrial_craft_2/reactor_pressure_vessel/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/reactor_pressure_vessel.png rename to static/browse/industrial_craft_2/reactor_pressure_vessel/icon.png diff --git a/prerender/browse/industrial_craft_2/reactor_pressure_vessel/index.html b/static/browse/industrial_craft_2/reactor_pressure_vessel/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/reactor_pressure_vessel/index.html rename to static/browse/industrial_craft_2/reactor_pressure_vessel/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/reactor_redstone_port.png b/static/browse/industrial_craft_2/reactor_redstone_port/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/reactor_redstone_port.png rename to static/browse/industrial_craft_2/reactor_redstone_port/icon.png diff --git a/prerender/browse/industrial_craft_2/reactor_redstone_port/index.html b/static/browse/industrial_craft_2/reactor_redstone_port/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/reactor_redstone_port/index.html rename to static/browse/industrial_craft_2/reactor_redstone_port/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/recycler.png b/static/browse/industrial_craft_2/recycler/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/recycler.png rename to static/browse/industrial_craft_2/recycler/icon.png diff --git a/prerender/browse/industrial_craft_2/recycler/index.html b/static/browse/industrial_craft_2/recycler/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/recycler/index.html rename to static/browse/industrial_craft_2/recycler/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/red_painter.png b/static/browse/industrial_craft_2/red_painter/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/red_painter.png rename to static/browse/industrial_craft_2/red_painter/icon.png diff --git a/prerender/browse/industrial_craft_2/red_painter/index.html b/static/browse/industrial_craft_2/red_painter/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/red_painter/index.html rename to static/browse/industrial_craft_2/red_painter/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/redmushroom_seeds.png b/static/browse/industrial_craft_2/redmushroom_seeds/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/redmushroom_seeds.png rename to static/browse/industrial_craft_2/redmushroom_seeds/icon.png diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/redstone_signal_inverter_upgrade.png b/static/browse/industrial_craft_2/redstone_signal_inverter_upgrade/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/redstone_signal_inverter_upgrade.png rename to static/browse/industrial_craft_2/redstone_signal_inverter_upgrade/icon.png diff --git a/prerender/browse/industrial_craft_2/redstone_signal_inverter_upgrade/index.html b/static/browse/industrial_craft_2/redstone_signal_inverter_upgrade/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/redstone_signal_inverter_upgrade/index.html rename to static/browse/industrial_craft_2/redstone_signal_inverter_upgrade/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/redwheat_seeds.png b/static/browse/industrial_craft_2/redwheat_seeds/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/redwheat_seeds.png rename to static/browse/industrial_craft_2/redwheat_seeds/icon.png diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/reed_seeds.png b/static/browse/industrial_craft_2/reed_seeds/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/reed_seeds.png rename to static/browse/industrial_craft_2/reed_seeds/icon.png diff --git a/prerender/browse/industrial_craft_2/refined_iron/index.html b/static/browse/industrial_craft_2/refined_iron/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/refined_iron/index.html rename to static/browse/industrial_craft_2/refined_iron/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/refined_iron_block.png b/static/browse/industrial_craft_2/refined_iron_block/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/refined_iron_block.png rename to static/browse/industrial_craft_2/refined_iron_block/icon.png diff --git a/prerender/browse/industrial_craft_2/refined_iron_block/index.html b/static/browse/industrial_craft_2/refined_iron_block/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/refined_iron_block/index.html rename to static/browse/industrial_craft_2/refined_iron_block/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/refined_iron_ingot.png b/static/browse/industrial_craft_2/refined_iron_ingot/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/refined_iron_ingot.png rename to static/browse/industrial_craft_2/refined_iron_ingot/icon.png diff --git a/prerender/browse/industrial_craft_2/refined_iron_ingot/index.html b/static/browse/industrial_craft_2/refined_iron_ingot/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/refined_iron_ingot/index.html rename to static/browse/industrial_craft_2/refined_iron_ingot/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/refined_iron_item_casing.png b/static/browse/industrial_craft_2/refined_iron_item_casing/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/refined_iron_item_casing.png rename to static/browse/industrial_craft_2/refined_iron_item_casing/icon.png diff --git a/prerender/browse/industrial_craft_2/refined_iron_item_casing/index.html b/static/browse/industrial_craft_2/refined_iron_item_casing/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/refined_iron_item_casing/index.html rename to static/browse/industrial_craft_2/refined_iron_item_casing/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/refined_iron_plate.png b/static/browse/industrial_craft_2/refined_iron_plate/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/refined_iron_plate.png rename to static/browse/industrial_craft_2/refined_iron_plate/icon.png diff --git a/prerender/browse/industrial_craft_2/refined_iron_plate/index.html b/static/browse/industrial_craft_2/refined_iron_plate/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/refined_iron_plate/index.html rename to static/browse/industrial_craft_2/refined_iron_plate/index.html diff --git a/prerender/browse/industrial_craft_2/refined_uranium/index.html b/static/browse/industrial_craft_2/refined_uranium/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/refined_uranium/index.html rename to static/browse/industrial_craft_2/refined_uranium/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/reinforced_construction_foam.png b/static/browse/industrial_craft_2/reinforced_construction_foam/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/reinforced_construction_foam.png rename to static/browse/industrial_craft_2/reinforced_construction_foam/icon.png diff --git a/prerender/browse/industrial_craft_2/reinforced_construction_foam/index.html b/static/browse/industrial_craft_2/reinforced_construction_foam/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/reinforced_construction_foam/index.html rename to static/browse/industrial_craft_2/reinforced_construction_foam/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/reinforced_door.png b/static/browse/industrial_craft_2/reinforced_door/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/reinforced_door.png rename to static/browse/industrial_craft_2/reinforced_door/icon.png diff --git a/prerender/browse/industrial_craft_2/reinforced_door/index.html b/static/browse/industrial_craft_2/reinforced_door/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/reinforced_door/index.html rename to static/browse/industrial_craft_2/reinforced_door/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/reinforced_glass.png b/static/browse/industrial_craft_2/reinforced_glass/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/reinforced_glass.png rename to static/browse/industrial_craft_2/reinforced_glass/icon.png diff --git a/prerender/browse/industrial_craft_2/reinforced_glass/index.html b/static/browse/industrial_craft_2/reinforced_glass/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/reinforced_glass/index.html rename to static/browse/industrial_craft_2/reinforced_glass/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/reinforced_stone.png b/static/browse/industrial_craft_2/reinforced_stone/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/reinforced_stone.png rename to static/browse/industrial_craft_2/reinforced_stone/icon.png diff --git a/prerender/browse/industrial_craft_2/reinforced_stone/index.html b/static/browse/industrial_craft_2/reinforced_stone/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/reinforced_stone/index.html rename to static/browse/industrial_craft_2/reinforced_stone/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/replicator.png b/static/browse/industrial_craft_2/replicator/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/replicator.png rename to static/browse/industrial_craft_2/replicator/icon.png diff --git a/prerender/browse/industrial_craft_2/replicator/index.html b/static/browse/industrial_craft_2/replicator/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/replicator/index.html rename to static/browse/industrial_craft_2/replicator/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/rose_seeds.png b/static/browse/industrial_craft_2/rose_seeds/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/rose_seeds.png rename to static/browse/industrial_craft_2/rose_seeds/icon.png diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/rsh_condensator.png b/static/browse/industrial_craft_2/rsh_condensator/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/rsh_condensator.png rename to static/browse/industrial_craft_2/rsh_condensator/icon.png diff --git a/prerender/browse/industrial_craft_2/rsh_condensator/index.html b/static/browse/industrial_craft_2/rsh_condensator/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/rsh_condensator/index.html rename to static/browse/industrial_craft_2/rsh_condensator/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/rubber.png b/static/browse/industrial_craft_2/rubber/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/rubber.png rename to static/browse/industrial_craft_2/rubber/icon.png diff --git a/prerender/browse/industrial_craft_2/rubber/index.html b/static/browse/industrial_craft_2/rubber/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/rubber/index.html rename to static/browse/industrial_craft_2/rubber/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/rubber_boots.png b/static/browse/industrial_craft_2/rubber_boots/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/rubber_boots.png rename to static/browse/industrial_craft_2/rubber_boots/icon.png diff --git a/prerender/browse/industrial_craft_2/rubber_boots/index.html b/static/browse/industrial_craft_2/rubber_boots/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/rubber_boots/index.html rename to static/browse/industrial_craft_2/rubber_boots/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/rubber_dinghy.png b/static/browse/industrial_craft_2/rubber_dinghy/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/rubber_dinghy.png rename to static/browse/industrial_craft_2/rubber_dinghy/icon.png diff --git a/prerender/browse/industrial_craft_2/rubber_dinghy/index.html b/static/browse/industrial_craft_2/rubber_dinghy/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/rubber_dinghy/index.html rename to static/browse/industrial_craft_2/rubber_dinghy/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/rubber_sheet.png b/static/browse/industrial_craft_2/rubber_sheet/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/rubber_sheet.png rename to static/browse/industrial_craft_2/rubber_sheet/icon.png diff --git a/prerender/browse/industrial_craft_2/rubber_sheet/index.html b/static/browse/industrial_craft_2/rubber_sheet/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/rubber_sheet/index.html rename to static/browse/industrial_craft_2/rubber_sheet/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/rubber_tree_leaves.png b/static/browse/industrial_craft_2/rubber_tree_leaves/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/rubber_tree_leaves.png rename to static/browse/industrial_craft_2/rubber_tree_leaves/icon.png diff --git a/prerender/browse/industrial_craft_2/rubber_tree_leaves/index.html b/static/browse/industrial_craft_2/rubber_tree_leaves/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/rubber_tree_leaves/index.html rename to static/browse/industrial_craft_2/rubber_tree_leaves/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/rubber_tree_sapling.png b/static/browse/industrial_craft_2/rubber_tree_sapling/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/rubber_tree_sapling.png rename to static/browse/industrial_craft_2/rubber_tree_sapling/icon.png diff --git a/prerender/browse/industrial_craft_2/rubber_tree_sapling/index.html b/static/browse/industrial_craft_2/rubber_tree_sapling/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/rubber_tree_sapling/index.html rename to static/browse/industrial_craft_2/rubber_tree_sapling/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/rubber_wood.png b/static/browse/industrial_craft_2/rubber_wood/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/rubber_wood.png rename to static/browse/industrial_craft_2/rubber_wood/icon.png diff --git a/prerender/browse/industrial_craft_2/rubber_wood/index.html b/static/browse/industrial_craft_2/rubber_wood/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/rubber_wood/index.html rename to static/browse/industrial_craft_2/rubber_wood/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/scaffold.png b/static/browse/industrial_craft_2/scaffold/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/scaffold.png rename to static/browse/industrial_craft_2/scaffold/icon.png diff --git a/prerender/browse/industrial_craft_2/scaffold/index.html b/static/browse/industrial_craft_2/scaffold/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/scaffold/index.html rename to static/browse/industrial_craft_2/scaffold/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/scanner.png b/static/browse/industrial_craft_2/scanner/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/scanner.png rename to static/browse/industrial_craft_2/scanner/icon.png diff --git a/prerender/browse/industrial_craft_2/scanner/index.html b/static/browse/industrial_craft_2/scanner/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/scanner/index.html rename to static/browse/industrial_craft_2/scanner/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/scrap.png b/static/browse/industrial_craft_2/scrap/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/scrap.png rename to static/browse/industrial_craft_2/scrap/icon.png diff --git a/prerender/browse/industrial_craft_2/scrap/index.html b/static/browse/industrial_craft_2/scrap/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/scrap/index.html rename to static/browse/industrial_craft_2/scrap/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/scrap_box.png b/static/browse/industrial_craft_2/scrap_box/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/scrap_box.png rename to static/browse/industrial_craft_2/scrap_box/icon.png diff --git a/prerender/browse/industrial_craft_2/scrap_box/index.html b/static/browse/industrial_craft_2/scrap_box/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/scrap_box/index.html rename to static/browse/industrial_craft_2/scrap_box/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/scuba_helmet.png b/static/browse/industrial_craft_2/scuba_helmet/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/scuba_helmet.png rename to static/browse/industrial_craft_2/scuba_helmet/icon.png diff --git a/prerender/browse/industrial_craft_2/scuba_helmet/index.html b/static/browse/industrial_craft_2/scuba_helmet/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/scuba_helmet/index.html rename to static/browse/industrial_craft_2/scuba_helmet/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/semifluid_generator.png b/static/browse/industrial_craft_2/semifluid_generator/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/semifluid_generator.png rename to static/browse/industrial_craft_2/semifluid_generator/icon.png diff --git a/prerender/browse/industrial_craft_2/semifluid_generator/index.html b/static/browse/industrial_craft_2/semifluid_generator/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/semifluid_generator/index.html rename to static/browse/industrial_craft_2/semifluid_generator/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/shaft_iron.png b/static/browse/industrial_craft_2/shaft_iron/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/shaft_iron.png rename to static/browse/industrial_craft_2/shaft_iron/icon.png diff --git a/prerender/browse/industrial_craft_2/shaft_iron/index.html b/static/browse/industrial_craft_2/shaft_iron/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/shaft_iron/index.html rename to static/browse/industrial_craft_2/shaft_iron/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/shaft_refined_iron.png b/static/browse/industrial_craft_2/shaft_refined_iron/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/shaft_refined_iron.png rename to static/browse/industrial_craft_2/shaft_refined_iron/icon.png diff --git a/prerender/browse/industrial_craft_2/shaft_refined_iron/index.html b/static/browse/industrial_craft_2/shaft_refined_iron/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/shaft_refined_iron/index.html rename to static/browse/industrial_craft_2/shaft_refined_iron/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/silicon_dioxide.png b/static/browse/industrial_craft_2/silicon_dioxide/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/silicon_dioxide.png rename to static/browse/industrial_craft_2/silicon_dioxide/icon.png diff --git a/prerender/browse/industrial_craft_2/silicon_dioxide/index.html b/static/browse/industrial_craft_2/silicon_dioxide/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/silicon_dioxide/index.html rename to static/browse/industrial_craft_2/silicon_dioxide/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/silver_dust.png b/static/browse/industrial_craft_2/silver_dust/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/silver_dust.png rename to static/browse/industrial_craft_2/silver_dust/icon.png diff --git a/prerender/browse/industrial_craft_2/silver_dust/index.html b/static/browse/industrial_craft_2/silver_dust/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/silver_dust/index.html rename to static/browse/industrial_craft_2/silver_dust/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/silver_ingot.png b/static/browse/industrial_craft_2/silver_ingot/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/silver_ingot.png rename to static/browse/industrial_craft_2/silver_ingot/icon.png diff --git a/prerender/browse/industrial_craft_2/silver_ingot/index.html b/static/browse/industrial_craft_2/silver_ingot/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/silver_ingot/index.html rename to static/browse/industrial_craft_2/silver_ingot/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/single_use_battery.png b/static/browse/industrial_craft_2/single_use_battery/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/single_use_battery.png rename to static/browse/industrial_craft_2/single_use_battery/icon.png diff --git a/prerender/browse/industrial_craft_2/single_use_battery/index.html b/static/browse/industrial_craft_2/single_use_battery/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/single_use_battery/index.html rename to static/browse/industrial_craft_2/single_use_battery/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/slag.png b/static/browse/industrial_craft_2/slag/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/slag.png rename to static/browse/industrial_craft_2/slag/icon.png diff --git a/prerender/browse/industrial_craft_2/slag/index.html b/static/browse/industrial_craft_2/slag/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/slag/index.html rename to static/browse/industrial_craft_2/slag/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/small_power_unit.png b/static/browse/industrial_craft_2/small_power_unit/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/small_power_unit.png rename to static/browse/industrial_craft_2/small_power_unit/icon.png diff --git a/prerender/browse/industrial_craft_2/small_power_unit/index.html b/static/browse/industrial_craft_2/small_power_unit/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/small_power_unit/index.html rename to static/browse/industrial_craft_2/small_power_unit/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/solar_distiller.png b/static/browse/industrial_craft_2/solar_distiller/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/solar_distiller.png rename to static/browse/industrial_craft_2/solar_distiller/icon.png diff --git a/prerender/browse/industrial_craft_2/solar_distiller/index.html b/static/browse/industrial_craft_2/solar_distiller/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/solar_distiller/index.html rename to static/browse/industrial_craft_2/solar_distiller/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/solar_helmet.png b/static/browse/industrial_craft_2/solar_helmet/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/solar_helmet.png rename to static/browse/industrial_craft_2/solar_helmet/icon.png diff --git a/prerender/browse/industrial_craft_2/solar_helmet/index.html b/static/browse/industrial_craft_2/solar_helmet/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/solar_helmet/index.html rename to static/browse/industrial_craft_2/solar_helmet/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/solar_panel.png b/static/browse/industrial_craft_2/solar_panel/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/solar_panel.png rename to static/browse/industrial_craft_2/solar_panel/icon.png diff --git a/prerender/browse/industrial_craft_2/solar_panel/index.html b/static/browse/industrial_craft_2/solar_panel/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/solar_panel/index.html rename to static/browse/industrial_craft_2/solar_panel/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/solid_canning_machine.png b/static/browse/industrial_craft_2/solid_canning_machine/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/solid_canning_machine.png rename to static/browse/industrial_craft_2/solid_canning_machine/icon.png diff --git a/prerender/browse/industrial_craft_2/solid_canning_machine/index.html b/static/browse/industrial_craft_2/solid_canning_machine/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/solid_canning_machine/index.html rename to static/browse/industrial_craft_2/solid_canning_machine/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/solid_heat_generator.png b/static/browse/industrial_craft_2/solid_heat_generator/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/solid_heat_generator.png rename to static/browse/industrial_craft_2/solid_heat_generator/icon.png diff --git a/prerender/browse/industrial_craft_2/solid_heat_generator/index.html b/static/browse/industrial_craft_2/solid_heat_generator/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/solid_heat_generator/index.html rename to static/browse/industrial_craft_2/solid_heat_generator/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/static_boots.png b/static/browse/industrial_craft_2/static_boots/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/static_boots.png rename to static/browse/industrial_craft_2/static_boots/icon.png diff --git a/prerender/browse/industrial_craft_2/static_boots/index.html b/static/browse/industrial_craft_2/static_boots/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/static_boots/index.html rename to static/browse/industrial_craft_2/static_boots/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/steam.png b/static/browse/industrial_craft_2/steam/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/steam.png rename to static/browse/industrial_craft_2/steam/icon.png diff --git a/prerender/browse/industrial_craft_2/steam/index.html b/static/browse/industrial_craft_2/steam/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/steam/index.html rename to static/browse/industrial_craft_2/steam/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/steam_cell.png b/static/browse/industrial_craft_2/steam_cell/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/steam_cell.png rename to static/browse/industrial_craft_2/steam_cell/icon.png diff --git a/prerender/browse/industrial_craft_2/steam_cell/index.html b/static/browse/industrial_craft_2/steam_cell/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/steam_cell/index.html rename to static/browse/industrial_craft_2/steam_cell/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/steam_generator.png b/static/browse/industrial_craft_2/steam_generator/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/steam_generator.png rename to static/browse/industrial_craft_2/steam_generator/icon.png diff --git a/prerender/browse/industrial_craft_2/steam_generator/index.html b/static/browse/industrial_craft_2/steam_generator/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/steam_generator/index.html rename to static/browse/industrial_craft_2/steam_generator/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/steam_turbine.png b/static/browse/industrial_craft_2/steam_turbine/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/steam_turbine.png rename to static/browse/industrial_craft_2/steam_turbine/icon.png diff --git a/prerender/browse/industrial_craft_2/steam_turbine/index.html b/static/browse/industrial_craft_2/steam_turbine/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/steam_turbine/index.html rename to static/browse/industrial_craft_2/steam_turbine/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/steam_turbine_blade.png b/static/browse/industrial_craft_2/steam_turbine_blade/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/steam_turbine_blade.png rename to static/browse/industrial_craft_2/steam_turbine_blade/icon.png diff --git a/prerender/browse/industrial_craft_2/steam_turbine_blade/index.html b/static/browse/industrial_craft_2/steam_turbine_blade/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/steam_turbine_blade/index.html rename to static/browse/industrial_craft_2/steam_turbine_blade/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/steel_rotor_blade.png b/static/browse/industrial_craft_2/steel_rotor_blade/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/steel_rotor_blade.png rename to static/browse/industrial_craft_2/steel_rotor_blade/icon.png diff --git a/prerender/browse/industrial_craft_2/steel_rotor_blade/index.html b/static/browse/industrial_craft_2/steel_rotor_blade/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/steel_rotor_blade/index.html rename to static/browse/industrial_craft_2/steel_rotor_blade/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/stickreed_seeds.png b/static/browse/industrial_craft_2/stickreed_seeds/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/stickreed_seeds.png rename to static/browse/industrial_craft_2/stickreed_seeds/icon.png diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/sticky_dynamite.png b/static/browse/industrial_craft_2/sticky_dynamite/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/sticky_dynamite.png rename to static/browse/industrial_craft_2/sticky_dynamite/icon.png diff --git a/prerender/browse/industrial_craft_2/sticky_dynamite/index.html b/static/browse/industrial_craft_2/sticky_dynamite/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/sticky_dynamite/index.html rename to static/browse/industrial_craft_2/sticky_dynamite/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/sticky_resin.png b/static/browse/industrial_craft_2/sticky_resin/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/sticky_resin.png rename to static/browse/industrial_craft_2/sticky_resin/icon.png diff --git a/prerender/browse/industrial_craft_2/sticky_resin/index.html b/static/browse/industrial_craft_2/sticky_resin/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/sticky_resin/index.html rename to static/browse/industrial_craft_2/sticky_resin/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/stirling_generator.png b/static/browse/industrial_craft_2/stirling_generator/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/stirling_generator.png rename to static/browse/industrial_craft_2/stirling_generator/icon.png diff --git a/prerender/browse/industrial_craft_2/stirling_generator/index.html b/static/browse/industrial_craft_2/stirling_generator/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/stirling_generator/index.html rename to static/browse/industrial_craft_2/stirling_generator/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/stone_dust.png b/static/browse/industrial_craft_2/stone_dust/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/stone_dust.png rename to static/browse/industrial_craft_2/stone_dust/icon.png diff --git a/prerender/browse/industrial_craft_2/stone_dust/index.html b/static/browse/industrial_craft_2/stone_dust/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/stone_dust/index.html rename to static/browse/industrial_craft_2/stone_dust/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/stone_mug.png b/static/browse/industrial_craft_2/stone_mug/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/stone_mug.png rename to static/browse/industrial_craft_2/stone_mug/icon.png diff --git a/prerender/browse/industrial_craft_2/stone_mug/index.html b/static/browse/industrial_craft_2/stone_mug/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/stone_mug/index.html rename to static/browse/industrial_craft_2/stone_mug/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/sulfur_dust.png b/static/browse/industrial_craft_2/sulfur_dust/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/sulfur_dust.png rename to static/browse/industrial_craft_2/sulfur_dust/icon.png diff --git a/prerender/browse/industrial_craft_2/sulfur_dust/index.html b/static/browse/industrial_craft_2/sulfur_dust/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/sulfur_dust/index.html rename to static/browse/industrial_craft_2/sulfur_dust/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/superheated_steam.png b/static/browse/industrial_craft_2/superheated_steam/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/superheated_steam.png rename to static/browse/industrial_craft_2/superheated_steam/icon.png diff --git a/prerender/browse/industrial_craft_2/superheated_steam/index.html b/static/browse/industrial_craft_2/superheated_steam/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/superheated_steam/index.html rename to static/browse/industrial_craft_2/superheated_steam/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/superheated_steam_cell.png b/static/browse/industrial_craft_2/superheated_steam_cell/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/superheated_steam_cell.png rename to static/browse/industrial_craft_2/superheated_steam_cell/icon.png diff --git a/prerender/browse/industrial_craft_2/superheated_steam_cell/index.html b/static/browse/industrial_craft_2/superheated_steam_cell/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/superheated_steam_cell/index.html rename to static/browse/industrial_craft_2/superheated_steam_cell/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/teleporter.png b/static/browse/industrial_craft_2/teleporter/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/teleporter.png rename to static/browse/industrial_craft_2/teleporter/icon.png diff --git a/prerender/browse/industrial_craft_2/teleporter/index.html b/static/browse/industrial_craft_2/teleporter/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/teleporter/index.html rename to static/browse/industrial_craft_2/teleporter/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/terra_wart.png b/static/browse/industrial_craft_2/terra_wart/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/terra_wart.png rename to static/browse/industrial_craft_2/terra_wart/icon.png diff --git a/prerender/browse/industrial_craft_2/terra_wart/index.html b/static/browse/industrial_craft_2/terra_wart/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/terra_wart/index.html rename to static/browse/industrial_craft_2/terra_wart/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/terra_wart_seeds.png b/static/browse/industrial_craft_2/terra_wart_seeds/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/terra_wart_seeds.png rename to static/browse/industrial_craft_2/terra_wart_seeds/icon.png diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/terraformer.png b/static/browse/industrial_craft_2/terraformer/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/terraformer.png rename to static/browse/industrial_craft_2/terraformer/icon.png diff --git a/prerender/browse/industrial_craft_2/terraformer/index.html b/static/browse/industrial_craft_2/terraformer/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/terraformer/index.html rename to static/browse/industrial_craft_2/terraformer/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/tesla_coil.png b/static/browse/industrial_craft_2/tesla_coil/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/tesla_coil.png rename to static/browse/industrial_craft_2/tesla_coil/icon.png diff --git a/prerender/browse/industrial_craft_2/tesla_coil/index.html b/static/browse/industrial_craft_2/tesla_coil/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/tesla_coil/index.html rename to static/browse/industrial_craft_2/tesla_coil/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/tfbp_chilling.png b/static/browse/industrial_craft_2/tfbp_chilling/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/tfbp_chilling.png rename to static/browse/industrial_craft_2/tfbp_chilling/icon.png diff --git a/prerender/browse/industrial_craft_2/tfbp_chilling/index.html b/static/browse/industrial_craft_2/tfbp_chilling/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/tfbp_chilling/index.html rename to static/browse/industrial_craft_2/tfbp_chilling/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/tfbp_cultivation.png b/static/browse/industrial_craft_2/tfbp_cultivation/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/tfbp_cultivation.png rename to static/browse/industrial_craft_2/tfbp_cultivation/icon.png diff --git a/prerender/browse/industrial_craft_2/tfbp_cultivation/index.html b/static/browse/industrial_craft_2/tfbp_cultivation/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/tfbp_cultivation/index.html rename to static/browse/industrial_craft_2/tfbp_cultivation/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/tfbp_desertification.png b/static/browse/industrial_craft_2/tfbp_desertification/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/tfbp_desertification.png rename to static/browse/industrial_craft_2/tfbp_desertification/icon.png diff --git a/prerender/browse/industrial_craft_2/tfbp_desertification/index.html b/static/browse/industrial_craft_2/tfbp_desertification/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/tfbp_desertification/index.html rename to static/browse/industrial_craft_2/tfbp_desertification/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/tfbp_empty.png b/static/browse/industrial_craft_2/tfbp_empty/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/tfbp_empty.png rename to static/browse/industrial_craft_2/tfbp_empty/icon.png diff --git a/prerender/browse/industrial_craft_2/tfbp_empty/index.html b/static/browse/industrial_craft_2/tfbp_empty/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/tfbp_empty/index.html rename to static/browse/industrial_craft_2/tfbp_empty/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/tfbp_flatification.png b/static/browse/industrial_craft_2/tfbp_flatification/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/tfbp_flatification.png rename to static/browse/industrial_craft_2/tfbp_flatification/icon.png diff --git a/prerender/browse/industrial_craft_2/tfbp_flatification/index.html b/static/browse/industrial_craft_2/tfbp_flatification/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/tfbp_flatification/index.html rename to static/browse/industrial_craft_2/tfbp_flatification/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/tfbp_irrigation.png b/static/browse/industrial_craft_2/tfbp_irrigation/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/tfbp_irrigation.png rename to static/browse/industrial_craft_2/tfbp_irrigation/icon.png diff --git a/prerender/browse/industrial_craft_2/tfbp_irrigation/index.html b/static/browse/industrial_craft_2/tfbp_irrigation/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/tfbp_irrigation/index.html rename to static/browse/industrial_craft_2/tfbp_irrigation/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/tfbp_mushroom.png b/static/browse/industrial_craft_2/tfbp_mushroom/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/tfbp_mushroom.png rename to static/browse/industrial_craft_2/tfbp_mushroom/icon.png diff --git a/prerender/browse/industrial_craft_2/tfbp_mushroom/index.html b/static/browse/industrial_craft_2/tfbp_mushroom/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/tfbp_mushroom/index.html rename to static/browse/industrial_craft_2/tfbp_mushroom/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/thermal_centrifuge.png b/static/browse/industrial_craft_2/thermal_centrifuge/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/thermal_centrifuge.png rename to static/browse/industrial_craft_2/thermal_centrifuge/icon.png diff --git a/prerender/browse/industrial_craft_2/thermal_centrifuge/index.html b/static/browse/industrial_craft_2/thermal_centrifuge/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/thermal_centrifuge/index.html rename to static/browse/industrial_craft_2/thermal_centrifuge/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/thick_neutron_reflector.png b/static/browse/industrial_craft_2/thick_neutron_reflector/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/thick_neutron_reflector.png rename to static/browse/industrial_craft_2/thick_neutron_reflector/icon.png diff --git a/prerender/browse/industrial_craft_2/thick_neutron_reflector/index.html b/static/browse/industrial_craft_2/thick_neutron_reflector/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/thick_neutron_reflector/index.html rename to static/browse/industrial_craft_2/thick_neutron_reflector/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/tile_blockdooralloy_name.png b/static/browse/industrial_craft_2/tile_blockdooralloy_name/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/tile_blockdooralloy_name.png rename to static/browse/industrial_craft_2/tile_blockdooralloy_name/icon.png diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/tin_block.png b/static/browse/industrial_craft_2/tin_block/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/tin_block.png rename to static/browse/industrial_craft_2/tin_block/icon.png diff --git a/prerender/browse/industrial_craft_2/tin_block/index.html b/static/browse/industrial_craft_2/tin_block/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/tin_block/index.html rename to static/browse/industrial_craft_2/tin_block/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/tin_cable.png b/static/browse/industrial_craft_2/tin_cable/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/tin_cable.png rename to static/browse/industrial_craft_2/tin_cable/icon.png diff --git a/prerender/browse/industrial_craft_2/tin_cable/index.html b/static/browse/industrial_craft_2/tin_cable/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/tin_cable/index.html rename to static/browse/industrial_craft_2/tin_cable/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/tin_can.png b/static/browse/industrial_craft_2/tin_can/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/tin_can.png rename to static/browse/industrial_craft_2/tin_can/icon.png diff --git a/prerender/browse/industrial_craft_2/tin_can/index.html b/static/browse/industrial_craft_2/tin_can/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/tin_can/index.html rename to static/browse/industrial_craft_2/tin_can/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/tin_dust.png b/static/browse/industrial_craft_2/tin_dust/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/tin_dust.png rename to static/browse/industrial_craft_2/tin_dust/icon.png diff --git a/prerender/browse/industrial_craft_2/tin_dust/index.html b/static/browse/industrial_craft_2/tin_dust/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/tin_dust/index.html rename to static/browse/industrial_craft_2/tin_dust/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/tin_ingot.png b/static/browse/industrial_craft_2/tin_ingot/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/tin_ingot.png rename to static/browse/industrial_craft_2/tin_ingot/icon.png diff --git a/prerender/browse/industrial_craft_2/tin_ingot/index.html b/static/browse/industrial_craft_2/tin_ingot/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/tin_ingot/index.html rename to static/browse/industrial_craft_2/tin_ingot/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/tin_item_casing.png b/static/browse/industrial_craft_2/tin_item_casing/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/tin_item_casing.png rename to static/browse/industrial_craft_2/tin_item_casing/icon.png diff --git a/prerender/browse/industrial_craft_2/tin_item_casing/index.html b/static/browse/industrial_craft_2/tin_item_casing/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/tin_item_casing/index.html rename to static/browse/industrial_craft_2/tin_item_casing/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/tin_ore.png b/static/browse/industrial_craft_2/tin_ore/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/tin_ore.png rename to static/browse/industrial_craft_2/tin_ore/icon.png diff --git a/prerender/browse/industrial_craft_2/tin_ore/index.html b/static/browse/industrial_craft_2/tin_ore/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/tin_ore/index.html rename to static/browse/industrial_craft_2/tin_ore/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/tin_plate.png b/static/browse/industrial_craft_2/tin_plate/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/tin_plate.png rename to static/browse/industrial_craft_2/tin_plate/icon.png diff --git a/prerender/browse/industrial_craft_2/tin_plate/index.html b/static/browse/industrial_craft_2/tin_plate/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/tin_plate/index.html rename to static/browse/industrial_craft_2/tin_plate/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/tiny_pile_of_bronze_dust.png b/static/browse/industrial_craft_2/tiny_pile_of_bronze_dust/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/tiny_pile_of_bronze_dust.png rename to static/browse/industrial_craft_2/tiny_pile_of_bronze_dust/icon.png diff --git a/prerender/browse/industrial_craft_2/tiny_pile_of_bronze_dust/index.html b/static/browse/industrial_craft_2/tiny_pile_of_bronze_dust/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/tiny_pile_of_bronze_dust/index.html rename to static/browse/industrial_craft_2/tiny_pile_of_bronze_dust/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/tiny_pile_of_copper_dust.png b/static/browse/industrial_craft_2/tiny_pile_of_copper_dust/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/tiny_pile_of_copper_dust.png rename to static/browse/industrial_craft_2/tiny_pile_of_copper_dust/icon.png diff --git a/prerender/browse/industrial_craft_2/tiny_pile_of_copper_dust/index.html b/static/browse/industrial_craft_2/tiny_pile_of_copper_dust/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/tiny_pile_of_copper_dust/index.html rename to static/browse/industrial_craft_2/tiny_pile_of_copper_dust/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/tiny_pile_of_gold_dust.png b/static/browse/industrial_craft_2/tiny_pile_of_gold_dust/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/tiny_pile_of_gold_dust.png rename to static/browse/industrial_craft_2/tiny_pile_of_gold_dust/icon.png diff --git a/prerender/browse/industrial_craft_2/tiny_pile_of_gold_dust/index.html b/static/browse/industrial_craft_2/tiny_pile_of_gold_dust/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/tiny_pile_of_gold_dust/index.html rename to static/browse/industrial_craft_2/tiny_pile_of_gold_dust/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/tiny_pile_of_iron_dust.png b/static/browse/industrial_craft_2/tiny_pile_of_iron_dust/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/tiny_pile_of_iron_dust.png rename to static/browse/industrial_craft_2/tiny_pile_of_iron_dust/icon.png diff --git a/prerender/browse/industrial_craft_2/tiny_pile_of_iron_dust/index.html b/static/browse/industrial_craft_2/tiny_pile_of_iron_dust/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/tiny_pile_of_iron_dust/index.html rename to static/browse/industrial_craft_2/tiny_pile_of_iron_dust/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/tiny_pile_of_lapis_dust.png b/static/browse/industrial_craft_2/tiny_pile_of_lapis_dust/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/tiny_pile_of_lapis_dust.png rename to static/browse/industrial_craft_2/tiny_pile_of_lapis_dust/icon.png diff --git a/prerender/browse/industrial_craft_2/tiny_pile_of_lapis_dust/index.html b/static/browse/industrial_craft_2/tiny_pile_of_lapis_dust/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/tiny_pile_of_lapis_dust/index.html rename to static/browse/industrial_craft_2/tiny_pile_of_lapis_dust/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/tiny_pile_of_lead_dust.png b/static/browse/industrial_craft_2/tiny_pile_of_lead_dust/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/tiny_pile_of_lead_dust.png rename to static/browse/industrial_craft_2/tiny_pile_of_lead_dust/icon.png diff --git a/prerender/browse/industrial_craft_2/tiny_pile_of_lead_dust/index.html b/static/browse/industrial_craft_2/tiny_pile_of_lead_dust/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/tiny_pile_of_lead_dust/index.html rename to static/browse/industrial_craft_2/tiny_pile_of_lead_dust/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/tiny_pile_of_lithium_dust.png b/static/browse/industrial_craft_2/tiny_pile_of_lithium_dust/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/tiny_pile_of_lithium_dust.png rename to static/browse/industrial_craft_2/tiny_pile_of_lithium_dust/icon.png diff --git a/prerender/browse/industrial_craft_2/tiny_pile_of_lithium_dust/index.html b/static/browse/industrial_craft_2/tiny_pile_of_lithium_dust/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/tiny_pile_of_lithium_dust/index.html rename to static/browse/industrial_craft_2/tiny_pile_of_lithium_dust/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/tiny_pile_of_obsidian_dust.png b/static/browse/industrial_craft_2/tiny_pile_of_obsidian_dust/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/tiny_pile_of_obsidian_dust.png rename to static/browse/industrial_craft_2/tiny_pile_of_obsidian_dust/icon.png diff --git a/prerender/browse/industrial_craft_2/tiny_pile_of_obsidian_dust/index.html b/static/browse/industrial_craft_2/tiny_pile_of_obsidian_dust/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/tiny_pile_of_obsidian_dust/index.html rename to static/browse/industrial_craft_2/tiny_pile_of_obsidian_dust/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/tiny_pile_of_plutonium.png b/static/browse/industrial_craft_2/tiny_pile_of_plutonium/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/tiny_pile_of_plutonium.png rename to static/browse/industrial_craft_2/tiny_pile_of_plutonium/icon.png diff --git a/prerender/browse/industrial_craft_2/tiny_pile_of_plutonium/index.html b/static/browse/industrial_craft_2/tiny_pile_of_plutonium/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/tiny_pile_of_plutonium/index.html rename to static/browse/industrial_craft_2/tiny_pile_of_plutonium/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/tiny_pile_of_silver_dust.png b/static/browse/industrial_craft_2/tiny_pile_of_silver_dust/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/tiny_pile_of_silver_dust.png rename to static/browse/industrial_craft_2/tiny_pile_of_silver_dust/icon.png diff --git a/prerender/browse/industrial_craft_2/tiny_pile_of_silver_dust/index.html b/static/browse/industrial_craft_2/tiny_pile_of_silver_dust/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/tiny_pile_of_silver_dust/index.html rename to static/browse/industrial_craft_2/tiny_pile_of_silver_dust/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/tiny_pile_of_sulfur_dust.png b/static/browse/industrial_craft_2/tiny_pile_of_sulfur_dust/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/tiny_pile_of_sulfur_dust.png rename to static/browse/industrial_craft_2/tiny_pile_of_sulfur_dust/icon.png diff --git a/prerender/browse/industrial_craft_2/tiny_pile_of_sulfur_dust/index.html b/static/browse/industrial_craft_2/tiny_pile_of_sulfur_dust/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/tiny_pile_of_sulfur_dust/index.html rename to static/browse/industrial_craft_2/tiny_pile_of_sulfur_dust/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/tiny_pile_of_tin_dust.png b/static/browse/industrial_craft_2/tiny_pile_of_tin_dust/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/tiny_pile_of_tin_dust.png rename to static/browse/industrial_craft_2/tiny_pile_of_tin_dust/icon.png diff --git a/prerender/browse/industrial_craft_2/tiny_pile_of_tin_dust/index.html b/static/browse/industrial_craft_2/tiny_pile_of_tin_dust/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/tiny_pile_of_tin_dust/index.html rename to static/browse/industrial_craft_2/tiny_pile_of_tin_dust/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/tiny_pile_of_uranium_235.png b/static/browse/industrial_craft_2/tiny_pile_of_uranium_235/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/tiny_pile_of_uranium_235.png rename to static/browse/industrial_craft_2/tiny_pile_of_uranium_235/icon.png diff --git a/prerender/browse/industrial_craft_2/tiny_pile_of_uranium_235/index.html b/static/browse/industrial_craft_2/tiny_pile_of_uranium_235/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/tiny_pile_of_uranium_235/index.html rename to static/browse/industrial_craft_2/tiny_pile_of_uranium_235/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/tool_box.png b/static/browse/industrial_craft_2/tool_box/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/tool_box.png rename to static/browse/industrial_craft_2/tool_box/icon.png diff --git a/prerender/browse/industrial_craft_2/tool_box/index.html b/static/browse/industrial_craft_2/tool_box/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/tool_box/index.html rename to static/browse/industrial_craft_2/tool_box/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/trade_o_mat.png b/static/browse/industrial_craft_2/trade_o_mat/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/trade_o_mat.png rename to static/browse/industrial_craft_2/trade_o_mat/icon.png diff --git a/prerender/browse/industrial_craft_2/trade_o_mat/index.html b/static/browse/industrial_craft_2/trade_o_mat/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/trade_o_mat/index.html rename to static/browse/industrial_craft_2/trade_o_mat/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/transformer_upgrade.png b/static/browse/industrial_craft_2/transformer_upgrade/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/transformer_upgrade.png rename to static/browse/industrial_craft_2/transformer_upgrade/icon.png diff --git a/prerender/browse/industrial_craft_2/transformer_upgrade/index.html b/static/browse/industrial_craft_2/transformer_upgrade/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/transformer_upgrade/index.html rename to static/browse/industrial_craft_2/transformer_upgrade/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/treetap.png b/static/browse/industrial_craft_2/treetap/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/treetap.png rename to static/browse/industrial_craft_2/treetap/icon.png diff --git a/prerender/browse/industrial_craft_2/treetap/index.html b/static/browse/industrial_craft_2/treetap/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/treetap/index.html rename to static/browse/industrial_craft_2/treetap/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/tulip_seeds.png b/static/browse/industrial_craft_2/tulip_seeds/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/tulip_seeds.png rename to static/browse/industrial_craft_2/tulip_seeds/icon.png diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/turning_table.png b/static/browse/industrial_craft_2/turning_table/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/turning_table.png rename to static/browse/industrial_craft_2/turning_table/icon.png diff --git a/prerender/browse/industrial_craft_2/turning_table/index.html b/static/browse/industrial_craft_2/turning_table/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/turning_table/index.html rename to static/browse/industrial_craft_2/turning_table/index.html diff --git a/prerender/browse/industrial_craft_2/ultra_low_current_cable/index.html b/static/browse/industrial_craft_2/ultra_low_current_cable/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/ultra_low_current_cable/index.html rename to static/browse/industrial_craft_2/ultra_low_current_cable/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/universal_fluid_cell.png b/static/browse/industrial_craft_2/universal_fluid_cell/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/universal_fluid_cell.png rename to static/browse/industrial_craft_2/universal_fluid_cell/icon.png diff --git a/prerender/browse/industrial_craft_2/universal_fluid_cell/index.html b/static/browse/industrial_craft_2/universal_fluid_cell/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/universal_fluid_cell/index.html rename to static/browse/industrial_craft_2/universal_fluid_cell/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/universal_fluid_cell_10.png b/static/browse/industrial_craft_2/universal_fluid_cell_10/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/universal_fluid_cell_10.png rename to static/browse/industrial_craft_2/universal_fluid_cell_10/icon.png diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/universal_fluid_cell_11.png b/static/browse/industrial_craft_2/universal_fluid_cell_11/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/universal_fluid_cell_11.png rename to static/browse/industrial_craft_2/universal_fluid_cell_11/icon.png diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/universal_fluid_cell_12.png b/static/browse/industrial_craft_2/universal_fluid_cell_12/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/universal_fluid_cell_12.png rename to static/browse/industrial_craft_2/universal_fluid_cell_12/icon.png diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/universal_fluid_cell_13.png b/static/browse/industrial_craft_2/universal_fluid_cell_13/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/universal_fluid_cell_13.png rename to static/browse/industrial_craft_2/universal_fluid_cell_13/icon.png diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/universal_fluid_cell_2.png b/static/browse/industrial_craft_2/universal_fluid_cell_2/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/universal_fluid_cell_2.png rename to static/browse/industrial_craft_2/universal_fluid_cell_2/icon.png diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/universal_fluid_cell_3.png b/static/browse/industrial_craft_2/universal_fluid_cell_3/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/universal_fluid_cell_3.png rename to static/browse/industrial_craft_2/universal_fluid_cell_3/icon.png diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/universal_fluid_cell_4.png b/static/browse/industrial_craft_2/universal_fluid_cell_4/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/universal_fluid_cell_4.png rename to static/browse/industrial_craft_2/universal_fluid_cell_4/icon.png diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/universal_fluid_cell_5.png b/static/browse/industrial_craft_2/universal_fluid_cell_5/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/universal_fluid_cell_5.png rename to static/browse/industrial_craft_2/universal_fluid_cell_5/icon.png diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/universal_fluid_cell_6.png b/static/browse/industrial_craft_2/universal_fluid_cell_6/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/universal_fluid_cell_6.png rename to static/browse/industrial_craft_2/universal_fluid_cell_6/icon.png diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/universal_fluid_cell_7.png b/static/browse/industrial_craft_2/universal_fluid_cell_7/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/universal_fluid_cell_7.png rename to static/browse/industrial_craft_2/universal_fluid_cell_7/icon.png diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/universal_fluid_cell_8.png b/static/browse/industrial_craft_2/universal_fluid_cell_8/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/universal_fluid_cell_8.png rename to static/browse/industrial_craft_2/universal_fluid_cell_8/icon.png diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/universal_fluid_cell_9.png b/static/browse/industrial_craft_2/universal_fluid_cell_9/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/universal_fluid_cell_9.png rename to static/browse/industrial_craft_2/universal_fluid_cell_9/icon.png diff --git a/prerender/browse/industrial_craft_2/uranium/index.html b/static/browse/industrial_craft_2/uranium/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/uranium/index.html rename to static/browse/industrial_craft_2/uranium/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/uranium_235.png b/static/browse/industrial_craft_2/uranium_235/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/uranium_235.png rename to static/browse/industrial_craft_2/uranium_235/icon.png diff --git a/prerender/browse/industrial_craft_2/uranium_235/index.html b/static/browse/industrial_craft_2/uranium_235/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/uranium_235/index.html rename to static/browse/industrial_craft_2/uranium_235/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/uranium_238.png b/static/browse/industrial_craft_2/uranium_238/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/uranium_238.png rename to static/browse/industrial_craft_2/uranium_238/icon.png diff --git a/prerender/browse/industrial_craft_2/uranium_238/index.html b/static/browse/industrial_craft_2/uranium_238/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/uranium_238/index.html rename to static/browse/industrial_craft_2/uranium_238/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/uranium_block.png b/static/browse/industrial_craft_2/uranium_block/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/uranium_block.png rename to static/browse/industrial_craft_2/uranium_block/icon.png diff --git a/prerender/browse/industrial_craft_2/uranium_block/index.html b/static/browse/industrial_craft_2/uranium_block/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/uranium_block/index.html rename to static/browse/industrial_craft_2/uranium_block/index.html diff --git a/prerender/browse/industrial_craft_2/uranium_cell/index.html b/static/browse/industrial_craft_2/uranium_cell/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/uranium_cell/index.html rename to static/browse/industrial_craft_2/uranium_cell/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/uranium_ore.png b/static/browse/industrial_craft_2/uranium_ore/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/uranium_ore.png rename to static/browse/industrial_craft_2/uranium_ore/icon.png diff --git a/prerender/browse/industrial_craft_2/uranium_ore/index.html b/static/browse/industrial_craft_2/uranium_ore/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/uranium_ore/index.html rename to static/browse/industrial_craft_2/uranium_ore/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/uu_matter.png b/static/browse/industrial_craft_2/uu_matter/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/uu_matter.png rename to static/browse/industrial_craft_2/uu_matter/icon.png diff --git a/prerender/browse/industrial_craft_2/uu_matter/index.html b/static/browse/industrial_craft_2/uu_matter/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/uu_matter/index.html rename to static/browse/industrial_craft_2/uu_matter/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/uumatter_cell.png b/static/browse/industrial_craft_2/uumatter_cell/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/uumatter_cell.png rename to static/browse/industrial_craft_2/uumatter_cell/icon.png diff --git a/prerender/browse/industrial_craft_2/uumatter_cell/index.html b/static/browse/industrial_craft_2/uumatter_cell/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/uumatter_cell/index.html rename to static/browse/industrial_craft_2/uumatter_cell/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/venomilia_seeds.png b/static/browse/industrial_craft_2/venomilia_seeds/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/venomilia_seeds.png rename to static/browse/industrial_craft_2/venomilia_seeds/icon.png diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/water_cell.png b/static/browse/industrial_craft_2/water_cell/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/water_cell.png rename to static/browse/industrial_craft_2/water_cell/icon.png diff --git a/prerender/browse/industrial_craft_2/water_cell/index.html b/static/browse/industrial_craft_2/water_cell/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/water_cell/index.html rename to static/browse/industrial_craft_2/water_cell/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/water_mill.png b/static/browse/industrial_craft_2/water_mill/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/water_mill.png rename to static/browse/industrial_craft_2/water_mill/icon.png diff --git a/prerender/browse/industrial_craft_2/water_mill/index.html b/static/browse/industrial_craft_2/water_mill/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/water_mill/index.html rename to static/browse/industrial_craft_2/water_mill/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/weed.png b/static/browse/industrial_craft_2/weed/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/weed.png rename to static/browse/industrial_craft_2/weed/icon.png diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/weed_ex.png b/static/browse/industrial_craft_2/weed_ex/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/weed_ex.png rename to static/browse/industrial_craft_2/weed_ex/icon.png diff --git a/prerender/browse/industrial_craft_2/weed_ex/index.html b/static/browse/industrial_craft_2/weed_ex/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/weed_ex/index.html rename to static/browse/industrial_craft_2/weed_ex/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/weed_seeds.png b/static/browse/industrial_craft_2/weed_seeds/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/weed_seeds.png rename to static/browse/industrial_craft_2/weed_seeds/icon.png diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/weeding_trowel.png b/static/browse/industrial_craft_2/weeding_trowel/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/weeding_trowel.png rename to static/browse/industrial_craft_2/weeding_trowel/icon.png diff --git a/prerender/browse/industrial_craft_2/weeding_trowel/index.html b/static/browse/industrial_craft_2/weeding_trowel/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/weeding_trowel/index.html rename to static/browse/industrial_craft_2/weeding_trowel/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/wheat_seeds.png b/static/browse/industrial_craft_2/wheat_seeds/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/wheat_seeds.png rename to static/browse/industrial_craft_2/wheat_seeds/icon.png diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/white_painter.png b/static/browse/industrial_craft_2/white_painter/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/white_painter.png rename to static/browse/industrial_craft_2/white_painter/icon.png diff --git a/prerender/browse/industrial_craft_2/white_painter/index.html b/static/browse/industrial_craft_2/white_painter/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/white_painter/index.html rename to static/browse/industrial_craft_2/white_painter/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/wind_mill.png b/static/browse/industrial_craft_2/wind_mill/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/wind_mill.png rename to static/browse/industrial_craft_2/wind_mill/icon.png diff --git a/prerender/browse/industrial_craft_2/wind_mill/index.html b/static/browse/industrial_craft_2/wind_mill/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/wind_mill/index.html rename to static/browse/industrial_craft_2/wind_mill/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/windmeter.png b/static/browse/industrial_craft_2/windmeter/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/windmeter.png rename to static/browse/industrial_craft_2/windmeter/icon.png diff --git a/prerender/browse/industrial_craft_2/windmeter/index.html b/static/browse/industrial_craft_2/windmeter/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/windmeter/index.html rename to static/browse/industrial_craft_2/windmeter/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/wood_rotor_blade.png b/static/browse/industrial_craft_2/wood_rotor_blade/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/wood_rotor_blade.png rename to static/browse/industrial_craft_2/wood_rotor_blade/icon.png diff --git a/prerender/browse/industrial_craft_2/wood_rotor_blade/index.html b/static/browse/industrial_craft_2/wood_rotor_blade/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/wood_rotor_blade/index.html rename to static/browse/industrial_craft_2/wood_rotor_blade/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/wooden_turning_blank.png b/static/browse/industrial_craft_2/wooden_turning_blank/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/wooden_turning_blank.png rename to static/browse/industrial_craft_2/wooden_turning_blank/icon.png diff --git a/prerender/browse/industrial_craft_2/wooden_turning_blank/index.html b/static/browse/industrial_craft_2/wooden_turning_blank/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/wooden_turning_blank/index.html rename to static/browse/industrial_craft_2/wooden_turning_blank/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/wrench.png b/static/browse/industrial_craft_2/wrench/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/wrench.png rename to static/browse/industrial_craft_2/wrench/icon.png diff --git a/prerender/browse/industrial_craft_2/wrench/index.html b/static/browse/industrial_craft_2/wrench/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/wrench/index.html rename to static/browse/industrial_craft_2/wrench/index.html diff --git a/src/data/industrial_craft_2/experimental-2.2.663/images/yellow_painter.png b/static/browse/industrial_craft_2/yellow_painter/icon.png similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/images/yellow_painter.png rename to static/browse/industrial_craft_2/yellow_painter/icon.png diff --git a/prerender/browse/industrial_craft_2/yellow_painter/index.html b/static/browse/industrial_craft_2/yellow_painter/index.html similarity index 100% rename from prerender/browse/industrial_craft_2/yellow_painter/index.html rename to static/browse/industrial_craft_2/yellow_painter/index.html diff --git a/src/data/minecraft/1.7.10/images/acacia_leaves.png b/static/browse/minecraft/acacia_leaves/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/acacia_leaves.png rename to static/browse/minecraft/acacia_leaves/icon.png diff --git a/prerender/browse/minecraft/acacia_leaves/index.html b/static/browse/minecraft/acacia_leaves/index.html similarity index 100% rename from prerender/browse/minecraft/acacia_leaves/index.html rename to static/browse/minecraft/acacia_leaves/index.html diff --git a/src/data/minecraft/1.7.10/images/acacia_sapling.png b/static/browse/minecraft/acacia_sapling/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/acacia_sapling.png rename to static/browse/minecraft/acacia_sapling/icon.png diff --git a/prerender/browse/minecraft/acacia_sapling/index.html b/static/browse/minecraft/acacia_sapling/index.html similarity index 100% rename from prerender/browse/minecraft/acacia_sapling/index.html rename to static/browse/minecraft/acacia_sapling/index.html diff --git a/src/data/minecraft/1.7.10/images/acacia_wood.png b/static/browse/minecraft/acacia_wood/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/acacia_wood.png rename to static/browse/minecraft/acacia_wood/icon.png diff --git a/prerender/browse/minecraft/acacia_wood/index.html b/static/browse/minecraft/acacia_wood/index.html similarity index 100% rename from prerender/browse/minecraft/acacia_wood/index.html rename to static/browse/minecraft/acacia_wood/index.html diff --git a/src/data/minecraft/1.7.10/images/acacia_wood_planks.png b/static/browse/minecraft/acacia_wood_planks/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/acacia_wood_planks.png rename to static/browse/minecraft/acacia_wood_planks/icon.png diff --git a/prerender/browse/minecraft/acacia_wood_planks/index.html b/static/browse/minecraft/acacia_wood_planks/index.html similarity index 100% rename from prerender/browse/minecraft/acacia_wood_planks/index.html rename to static/browse/minecraft/acacia_wood_planks/index.html diff --git a/src/data/minecraft/1.7.10/images/acacia_wood_slab.png b/static/browse/minecraft/acacia_wood_slab/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/acacia_wood_slab.png rename to static/browse/minecraft/acacia_wood_slab/icon.png diff --git a/prerender/browse/minecraft/acacia_wood_slab/index.html b/static/browse/minecraft/acacia_wood_slab/index.html similarity index 100% rename from prerender/browse/minecraft/acacia_wood_slab/index.html rename to static/browse/minecraft/acacia_wood_slab/index.html diff --git a/src/data/minecraft/1.7.10/images/acacia_wood_stairs.png b/static/browse/minecraft/acacia_wood_stairs/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/acacia_wood_stairs.png rename to static/browse/minecraft/acacia_wood_stairs/icon.png diff --git a/prerender/browse/minecraft/acacia_wood_stairs/index.html b/static/browse/minecraft/acacia_wood_stairs/index.html similarity index 100% rename from prerender/browse/minecraft/acacia_wood_stairs/index.html rename to static/browse/minecraft/acacia_wood_stairs/index.html diff --git a/src/data/minecraft/1.7.10/images/activator_rail.png b/static/browse/minecraft/activator_rail/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/activator_rail.png rename to static/browse/minecraft/activator_rail/icon.png diff --git a/prerender/browse/minecraft/activator_rail/index.html b/static/browse/minecraft/activator_rail/index.html similarity index 100% rename from prerender/browse/minecraft/activator_rail/index.html rename to static/browse/minecraft/activator_rail/index.html diff --git a/src/data/minecraft/1.7.10/images/allium.png b/static/browse/minecraft/allium/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/allium.png rename to static/browse/minecraft/allium/icon.png diff --git a/prerender/browse/minecraft/allium/index.html b/static/browse/minecraft/allium/index.html similarity index 100% rename from prerender/browse/minecraft/allium/index.html rename to static/browse/minecraft/allium/index.html diff --git a/src/data/minecraft/1.7.10/images/anvil.png b/static/browse/minecraft/anvil/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/anvil.png rename to static/browse/minecraft/anvil/icon.png diff --git a/prerender/browse/minecraft/anvil/index.html b/static/browse/minecraft/anvil/index.html similarity index 100% rename from prerender/browse/minecraft/anvil/index.html rename to static/browse/minecraft/anvil/index.html diff --git a/src/data/minecraft/1.7.10/images/apple.png b/static/browse/minecraft/apple/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/apple.png rename to static/browse/minecraft/apple/icon.png diff --git a/prerender/browse/minecraft/apple/index.html b/static/browse/minecraft/apple/index.html similarity index 100% rename from prerender/browse/minecraft/apple/index.html rename to static/browse/minecraft/apple/index.html diff --git a/src/data/minecraft/1.7.10/images/arrow.png b/static/browse/minecraft/arrow/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/arrow.png rename to static/browse/minecraft/arrow/icon.png diff --git a/prerender/browse/minecraft/arrow/index.html b/static/browse/minecraft/arrow/index.html similarity index 100% rename from prerender/browse/minecraft/arrow/index.html rename to static/browse/minecraft/arrow/index.html diff --git a/src/data/minecraft/1.7.10/images/awkward_potion.png b/static/browse/minecraft/awkward_potion/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/awkward_potion.png rename to static/browse/minecraft/awkward_potion/icon.png diff --git a/prerender/browse/minecraft/awkward_potion/index.html b/static/browse/minecraft/awkward_potion/index.html similarity index 100% rename from prerender/browse/minecraft/awkward_potion/index.html rename to static/browse/minecraft/awkward_potion/index.html diff --git a/src/data/minecraft/1.7.10/images/azure_bluet.png b/static/browse/minecraft/azure_bluet/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/azure_bluet.png rename to static/browse/minecraft/azure_bluet/icon.png diff --git a/prerender/browse/minecraft/azure_bluet/index.html b/static/browse/minecraft/azure_bluet/index.html similarity index 100% rename from prerender/browse/minecraft/azure_bluet/index.html rename to static/browse/minecraft/azure_bluet/index.html diff --git a/src/data/minecraft/1.7.10/images/baked_potato.png b/static/browse/minecraft/baked_potato/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/baked_potato.png rename to static/browse/minecraft/baked_potato/icon.png diff --git a/prerender/browse/minecraft/baked_potato/index.html b/static/browse/minecraft/baked_potato/index.html similarity index 100% rename from prerender/browse/minecraft/baked_potato/index.html rename to static/browse/minecraft/baked_potato/index.html diff --git a/src/data/minecraft/1.7.10/images/beacon.png b/static/browse/minecraft/beacon/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/beacon.png rename to static/browse/minecraft/beacon/icon.png diff --git a/prerender/browse/minecraft/beacon/index.html b/static/browse/minecraft/beacon/index.html similarity index 100% rename from prerender/browse/minecraft/beacon/index.html rename to static/browse/minecraft/beacon/index.html diff --git a/src/data/minecraft/1.7.10/images/bed.png b/static/browse/minecraft/bed/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/bed.png rename to static/browse/minecraft/bed/icon.png diff --git a/prerender/browse/minecraft/bed/index.html b/static/browse/minecraft/bed/index.html similarity index 100% rename from prerender/browse/minecraft/bed/index.html rename to static/browse/minecraft/bed/index.html diff --git a/src/data/minecraft/1.7.10/images/bedrock.png b/static/browse/minecraft/bedrock/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/bedrock.png rename to static/browse/minecraft/bedrock/icon.png diff --git a/prerender/browse/minecraft/bedrock/index.html b/static/browse/minecraft/bedrock/index.html similarity index 100% rename from prerender/browse/minecraft/bedrock/index.html rename to static/browse/minecraft/bedrock/index.html diff --git a/src/data/minecraft/1.7.10/images/birch_leaves.png b/static/browse/minecraft/birch_leaves/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/birch_leaves.png rename to static/browse/minecraft/birch_leaves/icon.png diff --git a/prerender/browse/minecraft/birch_leaves/index.html b/static/browse/minecraft/birch_leaves/index.html similarity index 100% rename from prerender/browse/minecraft/birch_leaves/index.html rename to static/browse/minecraft/birch_leaves/index.html diff --git a/src/data/minecraft/1.7.10/images/birch_sapling.png b/static/browse/minecraft/birch_sapling/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/birch_sapling.png rename to static/browse/minecraft/birch_sapling/icon.png diff --git a/prerender/browse/minecraft/birch_sapling/index.html b/static/browse/minecraft/birch_sapling/index.html similarity index 100% rename from prerender/browse/minecraft/birch_sapling/index.html rename to static/browse/minecraft/birch_sapling/index.html diff --git a/src/data/minecraft/1.7.10/images/birch_wood.png b/static/browse/minecraft/birch_wood/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/birch_wood.png rename to static/browse/minecraft/birch_wood/icon.png diff --git a/prerender/browse/minecraft/birch_wood/index.html b/static/browse/minecraft/birch_wood/index.html similarity index 100% rename from prerender/browse/minecraft/birch_wood/index.html rename to static/browse/minecraft/birch_wood/index.html diff --git a/src/data/minecraft/1.7.10/images/birch_wood_planks.png b/static/browse/minecraft/birch_wood_planks/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/birch_wood_planks.png rename to static/browse/minecraft/birch_wood_planks/icon.png diff --git a/prerender/browse/minecraft/birch_wood_planks/index.html b/static/browse/minecraft/birch_wood_planks/index.html similarity index 100% rename from prerender/browse/minecraft/birch_wood_planks/index.html rename to static/browse/minecraft/birch_wood_planks/index.html diff --git a/src/data/minecraft/1.7.10/images/birch_wood_slab.png b/static/browse/minecraft/birch_wood_slab/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/birch_wood_slab.png rename to static/browse/minecraft/birch_wood_slab/icon.png diff --git a/prerender/browse/minecraft/birch_wood_slab/index.html b/static/browse/minecraft/birch_wood_slab/index.html similarity index 100% rename from prerender/browse/minecraft/birch_wood_slab/index.html rename to static/browse/minecraft/birch_wood_slab/index.html diff --git a/src/data/minecraft/1.7.10/images/birch_wood_stairs.png b/static/browse/minecraft/birch_wood_stairs/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/birch_wood_stairs.png rename to static/browse/minecraft/birch_wood_stairs/icon.png diff --git a/prerender/browse/minecraft/birch_wood_stairs/index.html b/static/browse/minecraft/birch_wood_stairs/index.html similarity index 100% rename from prerender/browse/minecraft/birch_wood_stairs/index.html rename to static/browse/minecraft/birch_wood_stairs/index.html diff --git a/src/data/minecraft/1.7.10/images/black_carpet.png b/static/browse/minecraft/black_carpet/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/black_carpet.png rename to static/browse/minecraft/black_carpet/icon.png diff --git a/prerender/browse/minecraft/black_carpet/index.html b/static/browse/minecraft/black_carpet/index.html similarity index 100% rename from prerender/browse/minecraft/black_carpet/index.html rename to static/browse/minecraft/black_carpet/index.html diff --git a/src/data/minecraft/1.7.10/images/black_stained_clay.png b/static/browse/minecraft/black_stained_clay/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/black_stained_clay.png rename to static/browse/minecraft/black_stained_clay/icon.png diff --git a/prerender/browse/minecraft/black_stained_clay/index.html b/static/browse/minecraft/black_stained_clay/index.html similarity index 100% rename from prerender/browse/minecraft/black_stained_clay/index.html rename to static/browse/minecraft/black_stained_clay/index.html diff --git a/src/data/minecraft/1.7.10/images/black_stained_glass.png b/static/browse/minecraft/black_stained_glass/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/black_stained_glass.png rename to static/browse/minecraft/black_stained_glass/icon.png diff --git a/prerender/browse/minecraft/black_stained_glass/index.html b/static/browse/minecraft/black_stained_glass/index.html similarity index 100% rename from prerender/browse/minecraft/black_stained_glass/index.html rename to static/browse/minecraft/black_stained_glass/index.html diff --git a/src/data/minecraft/1.7.10/images/black_stained_glass_pane.png b/static/browse/minecraft/black_stained_glass_pane/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/black_stained_glass_pane.png rename to static/browse/minecraft/black_stained_glass_pane/icon.png diff --git a/prerender/browse/minecraft/black_stained_glass_pane/index.html b/static/browse/minecraft/black_stained_glass_pane/index.html similarity index 100% rename from prerender/browse/minecraft/black_stained_glass_pane/index.html rename to static/browse/minecraft/black_stained_glass_pane/index.html diff --git a/src/data/minecraft/1.7.10/images/black_wool.png b/static/browse/minecraft/black_wool/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/black_wool.png rename to static/browse/minecraft/black_wool/icon.png diff --git a/prerender/browse/minecraft/black_wool/index.html b/static/browse/minecraft/black_wool/index.html similarity index 100% rename from prerender/browse/minecraft/black_wool/index.html rename to static/browse/minecraft/black_wool/index.html diff --git a/src/data/minecraft/1.7.10/images/blaze_powder.png b/static/browse/minecraft/blaze_powder/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/blaze_powder.png rename to static/browse/minecraft/blaze_powder/icon.png diff --git a/prerender/browse/minecraft/blaze_powder/index.html b/static/browse/minecraft/blaze_powder/index.html similarity index 100% rename from prerender/browse/minecraft/blaze_powder/index.html rename to static/browse/minecraft/blaze_powder/index.html diff --git a/src/data/minecraft/1.7.10/images/blaze_rod.png b/static/browse/minecraft/blaze_rod/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/blaze_rod.png rename to static/browse/minecraft/blaze_rod/icon.png diff --git a/prerender/browse/minecraft/blaze_rod/index.html b/static/browse/minecraft/blaze_rod/index.html similarity index 100% rename from prerender/browse/minecraft/blaze_rod/index.html rename to static/browse/minecraft/blaze_rod/index.html diff --git a/src/data/minecraft/1.7.10/images/block_of_coal.png b/static/browse/minecraft/block_of_coal/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/block_of_coal.png rename to static/browse/minecraft/block_of_coal/icon.png diff --git a/prerender/browse/minecraft/block_of_coal/index.html b/static/browse/minecraft/block_of_coal/index.html similarity index 100% rename from prerender/browse/minecraft/block_of_coal/index.html rename to static/browse/minecraft/block_of_coal/index.html diff --git a/src/data/minecraft/1.7.10/images/block_of_diamond.png b/static/browse/minecraft/block_of_diamond/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/block_of_diamond.png rename to static/browse/minecraft/block_of_diamond/icon.png diff --git a/prerender/browse/minecraft/block_of_diamond/index.html b/static/browse/minecraft/block_of_diamond/index.html similarity index 100% rename from prerender/browse/minecraft/block_of_diamond/index.html rename to static/browse/minecraft/block_of_diamond/index.html diff --git a/src/data/minecraft/1.7.10/images/block_of_emerald.png b/static/browse/minecraft/block_of_emerald/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/block_of_emerald.png rename to static/browse/minecraft/block_of_emerald/icon.png diff --git a/prerender/browse/minecraft/block_of_emerald/index.html b/static/browse/minecraft/block_of_emerald/index.html similarity index 100% rename from prerender/browse/minecraft/block_of_emerald/index.html rename to static/browse/minecraft/block_of_emerald/index.html diff --git a/src/data/minecraft/1.7.10/images/block_of_gold.png b/static/browse/minecraft/block_of_gold/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/block_of_gold.png rename to static/browse/minecraft/block_of_gold/icon.png diff --git a/prerender/browse/minecraft/block_of_gold/index.html b/static/browse/minecraft/block_of_gold/index.html similarity index 100% rename from prerender/browse/minecraft/block_of_gold/index.html rename to static/browse/minecraft/block_of_gold/index.html diff --git a/src/data/minecraft/1.7.10/images/block_of_iron.png b/static/browse/minecraft/block_of_iron/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/block_of_iron.png rename to static/browse/minecraft/block_of_iron/icon.png diff --git a/prerender/browse/minecraft/block_of_iron/index.html b/static/browse/minecraft/block_of_iron/index.html similarity index 100% rename from prerender/browse/minecraft/block_of_iron/index.html rename to static/browse/minecraft/block_of_iron/index.html diff --git a/src/data/minecraft/1.7.10/images/block_of_quartz.png b/static/browse/minecraft/block_of_quartz/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/block_of_quartz.png rename to static/browse/minecraft/block_of_quartz/icon.png diff --git a/prerender/browse/minecraft/block_of_quartz/index.html b/static/browse/minecraft/block_of_quartz/index.html similarity index 100% rename from prerender/browse/minecraft/block_of_quartz/index.html rename to static/browse/minecraft/block_of_quartz/index.html diff --git a/src/data/minecraft/1.7.10/images/block_of_redstone.png b/static/browse/minecraft/block_of_redstone/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/block_of_redstone.png rename to static/browse/minecraft/block_of_redstone/icon.png diff --git a/prerender/browse/minecraft/block_of_redstone/index.html b/static/browse/minecraft/block_of_redstone/index.html similarity index 100% rename from prerender/browse/minecraft/block_of_redstone/index.html rename to static/browse/minecraft/block_of_redstone/index.html diff --git a/src/data/minecraft/1.7.10/images/blue_carpet.png b/static/browse/minecraft/blue_carpet/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/blue_carpet.png rename to static/browse/minecraft/blue_carpet/icon.png diff --git a/prerender/browse/minecraft/blue_carpet/index.html b/static/browse/minecraft/blue_carpet/index.html similarity index 100% rename from prerender/browse/minecraft/blue_carpet/index.html rename to static/browse/minecraft/blue_carpet/index.html diff --git a/src/data/minecraft/1.7.10/images/blue_orchid.png b/static/browse/minecraft/blue_orchid/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/blue_orchid.png rename to static/browse/minecraft/blue_orchid/icon.png diff --git a/prerender/browse/minecraft/blue_orchid/index.html b/static/browse/minecraft/blue_orchid/index.html similarity index 100% rename from prerender/browse/minecraft/blue_orchid/index.html rename to static/browse/minecraft/blue_orchid/index.html diff --git a/src/data/minecraft/1.7.10/images/blue_stained_clay.png b/static/browse/minecraft/blue_stained_clay/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/blue_stained_clay.png rename to static/browse/minecraft/blue_stained_clay/icon.png diff --git a/prerender/browse/minecraft/blue_stained_clay/index.html b/static/browse/minecraft/blue_stained_clay/index.html similarity index 100% rename from prerender/browse/minecraft/blue_stained_clay/index.html rename to static/browse/minecraft/blue_stained_clay/index.html diff --git a/src/data/minecraft/1.7.10/images/blue_stained_glass.png b/static/browse/minecraft/blue_stained_glass/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/blue_stained_glass.png rename to static/browse/minecraft/blue_stained_glass/icon.png diff --git a/prerender/browse/minecraft/blue_stained_glass/index.html b/static/browse/minecraft/blue_stained_glass/index.html similarity index 100% rename from prerender/browse/minecraft/blue_stained_glass/index.html rename to static/browse/minecraft/blue_stained_glass/index.html diff --git a/src/data/minecraft/1.7.10/images/blue_stained_glass_pane.png b/static/browse/minecraft/blue_stained_glass_pane/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/blue_stained_glass_pane.png rename to static/browse/minecraft/blue_stained_glass_pane/icon.png diff --git a/prerender/browse/minecraft/blue_stained_glass_pane/index.html b/static/browse/minecraft/blue_stained_glass_pane/index.html similarity index 100% rename from prerender/browse/minecraft/blue_stained_glass_pane/index.html rename to static/browse/minecraft/blue_stained_glass_pane/index.html diff --git a/src/data/minecraft/1.7.10/images/blue_wool.png b/static/browse/minecraft/blue_wool/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/blue_wool.png rename to static/browse/minecraft/blue_wool/icon.png diff --git a/prerender/browse/minecraft/blue_wool/index.html b/static/browse/minecraft/blue_wool/index.html similarity index 100% rename from prerender/browse/minecraft/blue_wool/index.html rename to static/browse/minecraft/blue_wool/index.html diff --git a/src/data/minecraft/1.7.10/images/boat.png b/static/browse/minecraft/boat/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/boat.png rename to static/browse/minecraft/boat/icon.png diff --git a/prerender/browse/minecraft/boat/index.html b/static/browse/minecraft/boat/index.html similarity index 100% rename from prerender/browse/minecraft/boat/index.html rename to static/browse/minecraft/boat/index.html diff --git a/src/data/minecraft/1.7.10/images/bone.png b/static/browse/minecraft/bone/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/bone.png rename to static/browse/minecraft/bone/icon.png diff --git a/prerender/browse/minecraft/bone/index.html b/static/browse/minecraft/bone/index.html similarity index 100% rename from prerender/browse/minecraft/bone/index.html rename to static/browse/minecraft/bone/index.html diff --git a/src/data/minecraft/1.7.10/images/bone_meal.png b/static/browse/minecraft/bone_meal/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/bone_meal.png rename to static/browse/minecraft/bone_meal/icon.png diff --git a/prerender/browse/minecraft/bone_meal/index.html b/static/browse/minecraft/bone_meal/index.html similarity index 100% rename from prerender/browse/minecraft/bone_meal/index.html rename to static/browse/minecraft/bone_meal/index.html diff --git a/src/data/minecraft/1.7.10/images/book.png b/static/browse/minecraft/book/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/book.png rename to static/browse/minecraft/book/icon.png diff --git a/prerender/browse/minecraft/book/index.html b/static/browse/minecraft/book/index.html similarity index 100% rename from prerender/browse/minecraft/book/index.html rename to static/browse/minecraft/book/index.html diff --git a/src/data/minecraft/1.7.10/images/book_and_quill.png b/static/browse/minecraft/book_and_quill/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/book_and_quill.png rename to static/browse/minecraft/book_and_quill/icon.png diff --git a/prerender/browse/minecraft/book_and_quill/index.html b/static/browse/minecraft/book_and_quill/index.html similarity index 100% rename from prerender/browse/minecraft/book_and_quill/index.html rename to static/browse/minecraft/book_and_quill/index.html diff --git a/src/data/minecraft/1.7.10/images/bookshelf.png b/static/browse/minecraft/bookshelf/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/bookshelf.png rename to static/browse/minecraft/bookshelf/icon.png diff --git a/prerender/browse/minecraft/bookshelf/index.html b/static/browse/minecraft/bookshelf/index.html similarity index 100% rename from prerender/browse/minecraft/bookshelf/index.html rename to static/browse/minecraft/bookshelf/index.html diff --git a/src/data/minecraft/1.7.10/images/bottle_o_enchanting.png b/static/browse/minecraft/bottle_o_enchanting/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/bottle_o_enchanting.png rename to static/browse/minecraft/bottle_o_enchanting/icon.png diff --git a/prerender/browse/minecraft/bottle_o_enchanting/index.html b/static/browse/minecraft/bottle_o_enchanting/index.html similarity index 100% rename from prerender/browse/minecraft/bottle_o_enchanting/index.html rename to static/browse/minecraft/bottle_o_enchanting/index.html diff --git a/src/data/minecraft/1.7.10/images/bow.png b/static/browse/minecraft/bow/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/bow.png rename to static/browse/minecraft/bow/icon.png diff --git a/prerender/browse/minecraft/bow/index.html b/static/browse/minecraft/bow/index.html similarity index 100% rename from prerender/browse/minecraft/bow/index.html rename to static/browse/minecraft/bow/index.html diff --git a/src/data/minecraft/1.7.10/images/bowl.png b/static/browse/minecraft/bowl/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/bowl.png rename to static/browse/minecraft/bowl/icon.png diff --git a/prerender/browse/minecraft/bowl/index.html b/static/browse/minecraft/bowl/index.html similarity index 100% rename from prerender/browse/minecraft/bowl/index.html rename to static/browse/minecraft/bowl/index.html diff --git a/src/data/minecraft/1.7.10/images/bread.png b/static/browse/minecraft/bread/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/bread.png rename to static/browse/minecraft/bread/icon.png diff --git a/prerender/browse/minecraft/bread/index.html b/static/browse/minecraft/bread/index.html similarity index 100% rename from prerender/browse/minecraft/bread/index.html rename to static/browse/minecraft/bread/index.html diff --git a/src/data/minecraft/1.7.10/images/brewing_stand.png b/static/browse/minecraft/brewing_stand/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/brewing_stand.png rename to static/browse/minecraft/brewing_stand/icon.png diff --git a/prerender/browse/minecraft/brewing_stand/index.html b/static/browse/minecraft/brewing_stand/index.html similarity index 100% rename from prerender/browse/minecraft/brewing_stand/index.html rename to static/browse/minecraft/brewing_stand/index.html diff --git a/src/data/minecraft/1.7.10/images/brick.png b/static/browse/minecraft/brick/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/brick.png rename to static/browse/minecraft/brick/icon.png diff --git a/prerender/browse/minecraft/brick/index.html b/static/browse/minecraft/brick/index.html similarity index 100% rename from prerender/browse/minecraft/brick/index.html rename to static/browse/minecraft/brick/index.html diff --git a/src/data/minecraft/1.7.10/images/brick_stairs.png b/static/browse/minecraft/brick_stairs/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/brick_stairs.png rename to static/browse/minecraft/brick_stairs/icon.png diff --git a/prerender/browse/minecraft/brick_stairs/index.html b/static/browse/minecraft/brick_stairs/index.html similarity index 100% rename from prerender/browse/minecraft/brick_stairs/index.html rename to static/browse/minecraft/brick_stairs/index.html diff --git a/src/data/minecraft/1.7.10/images/bricks.png b/static/browse/minecraft/bricks/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/bricks.png rename to static/browse/minecraft/bricks/icon.png diff --git a/prerender/browse/minecraft/bricks/index.html b/static/browse/minecraft/bricks/index.html similarity index 100% rename from prerender/browse/minecraft/bricks/index.html rename to static/browse/minecraft/bricks/index.html diff --git a/src/data/minecraft/1.7.10/images/bricks_slab.png b/static/browse/minecraft/bricks_slab/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/bricks_slab.png rename to static/browse/minecraft/bricks_slab/icon.png diff --git a/prerender/browse/minecraft/bricks_slab/index.html b/static/browse/minecraft/bricks_slab/index.html similarity index 100% rename from prerender/browse/minecraft/bricks_slab/index.html rename to static/browse/minecraft/bricks_slab/index.html diff --git a/src/data/minecraft/1.7.10/images/brown_carpet.png b/static/browse/minecraft/brown_carpet/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/brown_carpet.png rename to static/browse/minecraft/brown_carpet/icon.png diff --git a/prerender/browse/minecraft/brown_carpet/index.html b/static/browse/minecraft/brown_carpet/index.html similarity index 100% rename from prerender/browse/minecraft/brown_carpet/index.html rename to static/browse/minecraft/brown_carpet/index.html diff --git a/src/data/minecraft/1.7.10/images/brown_stained_clay.png b/static/browse/minecraft/brown_stained_clay/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/brown_stained_clay.png rename to static/browse/minecraft/brown_stained_clay/icon.png diff --git a/prerender/browse/minecraft/brown_stained_clay/index.html b/static/browse/minecraft/brown_stained_clay/index.html similarity index 100% rename from prerender/browse/minecraft/brown_stained_clay/index.html rename to static/browse/minecraft/brown_stained_clay/index.html diff --git a/src/data/minecraft/1.7.10/images/brown_stained_glass.png b/static/browse/minecraft/brown_stained_glass/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/brown_stained_glass.png rename to static/browse/minecraft/brown_stained_glass/icon.png diff --git a/prerender/browse/minecraft/brown_stained_glass/index.html b/static/browse/minecraft/brown_stained_glass/index.html similarity index 100% rename from prerender/browse/minecraft/brown_stained_glass/index.html rename to static/browse/minecraft/brown_stained_glass/index.html diff --git a/src/data/minecraft/1.7.10/images/brown_stained_glass_pane.png b/static/browse/minecraft/brown_stained_glass_pane/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/brown_stained_glass_pane.png rename to static/browse/minecraft/brown_stained_glass_pane/icon.png diff --git a/prerender/browse/minecraft/brown_stained_glass_pane/index.html b/static/browse/minecraft/brown_stained_glass_pane/index.html similarity index 100% rename from prerender/browse/minecraft/brown_stained_glass_pane/index.html rename to static/browse/minecraft/brown_stained_glass_pane/index.html diff --git a/src/data/minecraft/1.7.10/images/brown_wool.png b/static/browse/minecraft/brown_wool/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/brown_wool.png rename to static/browse/minecraft/brown_wool/icon.png diff --git a/prerender/browse/minecraft/brown_wool/index.html b/static/browse/minecraft/brown_wool/index.html similarity index 100% rename from prerender/browse/minecraft/brown_wool/index.html rename to static/browse/minecraft/brown_wool/index.html diff --git a/src/data/minecraft/1.7.10/images/bucket.png b/static/browse/minecraft/bucket/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/bucket.png rename to static/browse/minecraft/bucket/icon.png diff --git a/prerender/browse/minecraft/bucket/index.html b/static/browse/minecraft/bucket/index.html similarity index 100% rename from prerender/browse/minecraft/bucket/index.html rename to static/browse/minecraft/bucket/index.html diff --git a/src/data/minecraft/1.7.10/images/button.png b/static/browse/minecraft/button/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/button.png rename to static/browse/minecraft/button/icon.png diff --git a/src/data/minecraft/1.7.10/images/button_stone.png b/static/browse/minecraft/button_stone/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/button_stone.png rename to static/browse/minecraft/button_stone/icon.png diff --git a/prerender/browse/minecraft/button_stone/index.html b/static/browse/minecraft/button_stone/index.html similarity index 100% rename from prerender/browse/minecraft/button_stone/index.html rename to static/browse/minecraft/button_stone/index.html diff --git a/src/data/minecraft/1.7.10/images/button_wood.png b/static/browse/minecraft/button_wood/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/button_wood.png rename to static/browse/minecraft/button_wood/icon.png diff --git a/prerender/browse/minecraft/button_wood/index.html b/static/browse/minecraft/button_wood/index.html similarity index 100% rename from prerender/browse/minecraft/button_wood/index.html rename to static/browse/minecraft/button_wood/index.html diff --git a/src/data/minecraft/1.7.10/images/cactus.png b/static/browse/minecraft/cactus/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/cactus.png rename to static/browse/minecraft/cactus/icon.png diff --git a/prerender/browse/minecraft/cactus/index.html b/static/browse/minecraft/cactus/index.html similarity index 100% rename from prerender/browse/minecraft/cactus/index.html rename to static/browse/minecraft/cactus/index.html diff --git a/src/data/minecraft/1.7.10/images/cactus_green.png b/static/browse/minecraft/cactus_green/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/cactus_green.png rename to static/browse/minecraft/cactus_green/icon.png diff --git a/prerender/browse/minecraft/cactus_green/index.html b/static/browse/minecraft/cactus_green/index.html similarity index 100% rename from prerender/browse/minecraft/cactus_green/index.html rename to static/browse/minecraft/cactus_green/index.html diff --git a/src/data/minecraft/1.7.10/images/cake.png b/static/browse/minecraft/cake/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/cake.png rename to static/browse/minecraft/cake/icon.png diff --git a/prerender/browse/minecraft/cake/index.html b/static/browse/minecraft/cake/index.html similarity index 100% rename from prerender/browse/minecraft/cake/index.html rename to static/browse/minecraft/cake/index.html diff --git a/src/data/minecraft/1.7.10/images/carpet.png b/static/browse/minecraft/carpet/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/carpet.png rename to static/browse/minecraft/carpet/icon.png diff --git a/prerender/browse/minecraft/carpet/index.html b/static/browse/minecraft/carpet/index.html similarity index 100% rename from prerender/browse/minecraft/carpet/index.html rename to static/browse/minecraft/carpet/index.html diff --git a/src/data/minecraft/1.7.10/images/carrot.png b/static/browse/minecraft/carrot/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/carrot.png rename to static/browse/minecraft/carrot/icon.png diff --git a/prerender/browse/minecraft/carrot/index.html b/static/browse/minecraft/carrot/index.html similarity index 100% rename from prerender/browse/minecraft/carrot/index.html rename to static/browse/minecraft/carrot/index.html diff --git a/src/data/minecraft/1.7.10/images/carrot_on_a_stick.png b/static/browse/minecraft/carrot_on_a_stick/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/carrot_on_a_stick.png rename to static/browse/minecraft/carrot_on_a_stick/icon.png diff --git a/prerender/browse/minecraft/carrot_on_a_stick/index.html b/static/browse/minecraft/carrot_on_a_stick/index.html similarity index 100% rename from prerender/browse/minecraft/carrot_on_a_stick/index.html rename to static/browse/minecraft/carrot_on_a_stick/index.html diff --git a/src/data/minecraft/1.7.10/images/cauldron.png b/static/browse/minecraft/cauldron/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/cauldron.png rename to static/browse/minecraft/cauldron/icon.png diff --git a/prerender/browse/minecraft/cauldron/index.html b/static/browse/minecraft/cauldron/index.html similarity index 100% rename from prerender/browse/minecraft/cauldron/index.html rename to static/browse/minecraft/cauldron/index.html diff --git a/src/data/minecraft/1.7.10/images/chain_boots.png b/static/browse/minecraft/chain_boots/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/chain_boots.png rename to static/browse/minecraft/chain_boots/icon.png diff --git a/prerender/browse/minecraft/chain_boots/index.html b/static/browse/minecraft/chain_boots/index.html similarity index 100% rename from prerender/browse/minecraft/chain_boots/index.html rename to static/browse/minecraft/chain_boots/index.html diff --git a/src/data/minecraft/1.7.10/images/chain_chestplate.png b/static/browse/minecraft/chain_chestplate/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/chain_chestplate.png rename to static/browse/minecraft/chain_chestplate/icon.png diff --git a/prerender/browse/minecraft/chain_chestplate/index.html b/static/browse/minecraft/chain_chestplate/index.html similarity index 100% rename from prerender/browse/minecraft/chain_chestplate/index.html rename to static/browse/minecraft/chain_chestplate/index.html diff --git a/src/data/minecraft/1.7.10/images/chain_helmet.png b/static/browse/minecraft/chain_helmet/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/chain_helmet.png rename to static/browse/minecraft/chain_helmet/icon.png diff --git a/prerender/browse/minecraft/chain_helmet/index.html b/static/browse/minecraft/chain_helmet/index.html similarity index 100% rename from prerender/browse/minecraft/chain_helmet/index.html rename to static/browse/minecraft/chain_helmet/index.html diff --git a/src/data/minecraft/1.7.10/images/chain_leggings.png b/static/browse/minecraft/chain_leggings/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/chain_leggings.png rename to static/browse/minecraft/chain_leggings/icon.png diff --git a/prerender/browse/minecraft/chain_leggings/index.html b/static/browse/minecraft/chain_leggings/index.html similarity index 100% rename from prerender/browse/minecraft/chain_leggings/index.html rename to static/browse/minecraft/chain_leggings/index.html diff --git a/src/data/minecraft/1.7.10/images/charcoal.png b/static/browse/minecraft/charcoal/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/charcoal.png rename to static/browse/minecraft/charcoal/icon.png diff --git a/prerender/browse/minecraft/charcoal/index.html b/static/browse/minecraft/charcoal/index.html similarity index 100% rename from prerender/browse/minecraft/charcoal/index.html rename to static/browse/minecraft/charcoal/index.html diff --git a/src/data/minecraft/1.7.10/images/chest.png b/static/browse/minecraft/chest/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/chest.png rename to static/browse/minecraft/chest/icon.png diff --git a/prerender/browse/minecraft/chest/index.html b/static/browse/minecraft/chest/index.html similarity index 100% rename from prerender/browse/minecraft/chest/index.html rename to static/browse/minecraft/chest/index.html diff --git a/src/data/minecraft/1.7.10/images/chiseled_quartz_block.png b/static/browse/minecraft/chiseled_quartz_block/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/chiseled_quartz_block.png rename to static/browse/minecraft/chiseled_quartz_block/icon.png diff --git a/prerender/browse/minecraft/chiseled_quartz_block/index.html b/static/browse/minecraft/chiseled_quartz_block/index.html similarity index 100% rename from prerender/browse/minecraft/chiseled_quartz_block/index.html rename to static/browse/minecraft/chiseled_quartz_block/index.html diff --git a/src/data/minecraft/1.7.10/images/chiseled_sandstone.png b/static/browse/minecraft/chiseled_sandstone/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/chiseled_sandstone.png rename to static/browse/minecraft/chiseled_sandstone/icon.png diff --git a/prerender/browse/minecraft/chiseled_sandstone/index.html b/static/browse/minecraft/chiseled_sandstone/index.html similarity index 100% rename from prerender/browse/minecraft/chiseled_sandstone/index.html rename to static/browse/minecraft/chiseled_sandstone/index.html diff --git a/src/data/minecraft/1.7.10/images/chiseled_stone_brick_monster_egg.png b/static/browse/minecraft/chiseled_stone_brick_monster_egg/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/chiseled_stone_brick_monster_egg.png rename to static/browse/minecraft/chiseled_stone_brick_monster_egg/icon.png diff --git a/src/data/minecraft/1.7.10/images/chiseled_stone_bricks.png b/static/browse/minecraft/chiseled_stone_bricks/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/chiseled_stone_bricks.png rename to static/browse/minecraft/chiseled_stone_bricks/icon.png diff --git a/prerender/browse/minecraft/chiseled_stone_bricks/index.html b/static/browse/minecraft/chiseled_stone_bricks/index.html similarity index 100% rename from prerender/browse/minecraft/chiseled_stone_bricks/index.html rename to static/browse/minecraft/chiseled_stone_bricks/index.html diff --git a/src/data/minecraft/1.7.10/images/clay.png b/static/browse/minecraft/clay/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/clay.png rename to static/browse/minecraft/clay/icon.png diff --git a/src/data/minecraft/1.7.10/images/clay_block.png b/static/browse/minecraft/clay_block/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/clay_block.png rename to static/browse/minecraft/clay_block/icon.png diff --git a/prerender/browse/minecraft/clay_block/index.html b/static/browse/minecraft/clay_block/index.html similarity index 100% rename from prerender/browse/minecraft/clay_block/index.html rename to static/browse/minecraft/clay_block/index.html diff --git a/src/data/minecraft/1.7.10/images/clock.png b/static/browse/minecraft/clock/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/clock.png rename to static/browse/minecraft/clock/icon.png diff --git a/prerender/browse/minecraft/clock/index.html b/static/browse/minecraft/clock/index.html similarity index 100% rename from prerender/browse/minecraft/clock/index.html rename to static/browse/minecraft/clock/index.html diff --git a/src/data/minecraft/1.7.10/images/clownfish.png b/static/browse/minecraft/clownfish/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/clownfish.png rename to static/browse/minecraft/clownfish/icon.png diff --git a/prerender/browse/minecraft/clownfish/index.html b/static/browse/minecraft/clownfish/index.html similarity index 100% rename from prerender/browse/minecraft/clownfish/index.html rename to static/browse/minecraft/clownfish/index.html diff --git a/src/data/minecraft/1.7.10/images/coal.png b/static/browse/minecraft/coal/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/coal.png rename to static/browse/minecraft/coal/icon.png diff --git a/prerender/browse/minecraft/coal/index.html b/static/browse/minecraft/coal/index.html similarity index 100% rename from prerender/browse/minecraft/coal/index.html rename to static/browse/minecraft/coal/index.html diff --git a/src/data/minecraft/1.7.10/images/coal_ore.png b/static/browse/minecraft/coal_ore/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/coal_ore.png rename to static/browse/minecraft/coal_ore/icon.png diff --git a/prerender/browse/minecraft/coal_ore/index.html b/static/browse/minecraft/coal_ore/index.html similarity index 100% rename from prerender/browse/minecraft/coal_ore/index.html rename to static/browse/minecraft/coal_ore/index.html diff --git a/src/data/minecraft/1.7.10/images/cobblestone.png b/static/browse/minecraft/cobblestone/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/cobblestone.png rename to static/browse/minecraft/cobblestone/icon.png diff --git a/prerender/browse/minecraft/cobblestone/index.html b/static/browse/minecraft/cobblestone/index.html similarity index 100% rename from prerender/browse/minecraft/cobblestone/index.html rename to static/browse/minecraft/cobblestone/index.html diff --git a/src/data/minecraft/1.7.10/images/cobblestone_monster_egg.png b/static/browse/minecraft/cobblestone_monster_egg/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/cobblestone_monster_egg.png rename to static/browse/minecraft/cobblestone_monster_egg/icon.png diff --git a/src/data/minecraft/1.7.10/images/cobblestone_slab.png b/static/browse/minecraft/cobblestone_slab/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/cobblestone_slab.png rename to static/browse/minecraft/cobblestone_slab/icon.png diff --git a/prerender/browse/minecraft/cobblestone_slab/index.html b/static/browse/minecraft/cobblestone_slab/index.html similarity index 100% rename from prerender/browse/minecraft/cobblestone_slab/index.html rename to static/browse/minecraft/cobblestone_slab/index.html diff --git a/src/data/minecraft/1.7.10/images/cobblestone_wall.png b/static/browse/minecraft/cobblestone_wall/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/cobblestone_wall.png rename to static/browse/minecraft/cobblestone_wall/icon.png diff --git a/prerender/browse/minecraft/cobblestone_wall/index.html b/static/browse/minecraft/cobblestone_wall/index.html similarity index 100% rename from prerender/browse/minecraft/cobblestone_wall/index.html rename to static/browse/minecraft/cobblestone_wall/index.html diff --git a/src/data/minecraft/1.7.10/images/cobweb.png b/static/browse/minecraft/cobweb/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/cobweb.png rename to static/browse/minecraft/cobweb/icon.png diff --git a/prerender/browse/minecraft/cobweb/index.html b/static/browse/minecraft/cobweb/index.html similarity index 100% rename from prerender/browse/minecraft/cobweb/index.html rename to static/browse/minecraft/cobweb/index.html diff --git a/src/data/minecraft/1.7.10/images/cocoa_beans.png b/static/browse/minecraft/cocoa_beans/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/cocoa_beans.png rename to static/browse/minecraft/cocoa_beans/icon.png diff --git a/prerender/browse/minecraft/cocoa_beans/index.html b/static/browse/minecraft/cocoa_beans/index.html similarity index 100% rename from prerender/browse/minecraft/cocoa_beans/index.html rename to static/browse/minecraft/cocoa_beans/index.html diff --git a/src/data/minecraft/1.7.10/images/command_block.png b/static/browse/minecraft/command_block/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/command_block.png rename to static/browse/minecraft/command_block/icon.png diff --git a/prerender/browse/minecraft/command_block/index.html b/static/browse/minecraft/command_block/index.html similarity index 100% rename from prerender/browse/minecraft/command_block/index.html rename to static/browse/minecraft/command_block/index.html diff --git a/src/data/minecraft/1.7.10/images/compass.png b/static/browse/minecraft/compass/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/compass.png rename to static/browse/minecraft/compass/icon.png diff --git a/prerender/browse/minecraft/compass/index.html b/static/browse/minecraft/compass/index.html similarity index 100% rename from prerender/browse/minecraft/compass/index.html rename to static/browse/minecraft/compass/index.html diff --git a/src/data/minecraft/1.7.10/images/cooked_chicken.png b/static/browse/minecraft/cooked_chicken/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/cooked_chicken.png rename to static/browse/minecraft/cooked_chicken/icon.png diff --git a/prerender/browse/minecraft/cooked_chicken/index.html b/static/browse/minecraft/cooked_chicken/index.html similarity index 100% rename from prerender/browse/minecraft/cooked_chicken/index.html rename to static/browse/minecraft/cooked_chicken/index.html diff --git a/src/data/minecraft/1.7.10/images/cooked_fish.png b/static/browse/minecraft/cooked_fish/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/cooked_fish.png rename to static/browse/minecraft/cooked_fish/icon.png diff --git a/prerender/browse/minecraft/cooked_fish/index.html b/static/browse/minecraft/cooked_fish/index.html similarity index 100% rename from prerender/browse/minecraft/cooked_fish/index.html rename to static/browse/minecraft/cooked_fish/index.html diff --git a/src/data/minecraft/1.7.10/images/cooked_porkchop.png b/static/browse/minecraft/cooked_porkchop/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/cooked_porkchop.png rename to static/browse/minecraft/cooked_porkchop/icon.png diff --git a/prerender/browse/minecraft/cooked_porkchop/index.html b/static/browse/minecraft/cooked_porkchop/index.html similarity index 100% rename from prerender/browse/minecraft/cooked_porkchop/index.html rename to static/browse/minecraft/cooked_porkchop/index.html diff --git a/src/data/minecraft/1.7.10/images/cooked_salmon.png b/static/browse/minecraft/cooked_salmon/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/cooked_salmon.png rename to static/browse/minecraft/cooked_salmon/icon.png diff --git a/prerender/browse/minecraft/cooked_salmon/index.html b/static/browse/minecraft/cooked_salmon/index.html similarity index 100% rename from prerender/browse/minecraft/cooked_salmon/index.html rename to static/browse/minecraft/cooked_salmon/index.html diff --git a/src/data/minecraft/1.7.10/images/cookie.png b/static/browse/minecraft/cookie/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/cookie.png rename to static/browse/minecraft/cookie/icon.png diff --git a/prerender/browse/minecraft/cookie/index.html b/static/browse/minecraft/cookie/index.html similarity index 100% rename from prerender/browse/minecraft/cookie/index.html rename to static/browse/minecraft/cookie/index.html diff --git a/src/data/minecraft/1.7.10/images/cracked_stone_brick_monster_egg.png b/static/browse/minecraft/cracked_stone_brick_monster_egg/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/cracked_stone_brick_monster_egg.png rename to static/browse/minecraft/cracked_stone_brick_monster_egg/icon.png diff --git a/src/data/minecraft/1.7.10/images/cracked_stone_bricks.png b/static/browse/minecraft/cracked_stone_bricks/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/cracked_stone_bricks.png rename to static/browse/minecraft/cracked_stone_bricks/icon.png diff --git a/prerender/browse/minecraft/cracked_stone_bricks/index.html b/static/browse/minecraft/cracked_stone_bricks/index.html similarity index 100% rename from prerender/browse/minecraft/cracked_stone_bricks/index.html rename to static/browse/minecraft/cracked_stone_bricks/index.html diff --git a/src/data/minecraft/1.7.10/images/crafting_table.png b/static/browse/minecraft/crafting_table/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/crafting_table.png rename to static/browse/minecraft/crafting_table/icon.png diff --git a/prerender/browse/minecraft/crafting_table/index.html b/static/browse/minecraft/crafting_table/index.html similarity index 100% rename from prerender/browse/minecraft/crafting_table/index.html rename to static/browse/minecraft/crafting_table/index.html diff --git a/src/data/minecraft/1.7.10/images/creeper_head.png b/static/browse/minecraft/creeper_head/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/creeper_head.png rename to static/browse/minecraft/creeper_head/icon.png diff --git a/prerender/browse/minecraft/creeper_head/index.html b/static/browse/minecraft/creeper_head/index.html similarity index 100% rename from prerender/browse/minecraft/creeper_head/index.html rename to static/browse/minecraft/creeper_head/index.html diff --git a/src/data/minecraft/1.7.10/images/cyan_carpet.png b/static/browse/minecraft/cyan_carpet/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/cyan_carpet.png rename to static/browse/minecraft/cyan_carpet/icon.png diff --git a/prerender/browse/minecraft/cyan_carpet/index.html b/static/browse/minecraft/cyan_carpet/index.html similarity index 100% rename from prerender/browse/minecraft/cyan_carpet/index.html rename to static/browse/minecraft/cyan_carpet/index.html diff --git a/src/data/minecraft/1.7.10/images/cyan_dye.png b/static/browse/minecraft/cyan_dye/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/cyan_dye.png rename to static/browse/minecraft/cyan_dye/icon.png diff --git a/prerender/browse/minecraft/cyan_dye/index.html b/static/browse/minecraft/cyan_dye/index.html similarity index 100% rename from prerender/browse/minecraft/cyan_dye/index.html rename to static/browse/minecraft/cyan_dye/index.html diff --git a/src/data/minecraft/1.7.10/images/cyan_stained_clay.png b/static/browse/minecraft/cyan_stained_clay/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/cyan_stained_clay.png rename to static/browse/minecraft/cyan_stained_clay/icon.png diff --git a/prerender/browse/minecraft/cyan_stained_clay/index.html b/static/browse/minecraft/cyan_stained_clay/index.html similarity index 100% rename from prerender/browse/minecraft/cyan_stained_clay/index.html rename to static/browse/minecraft/cyan_stained_clay/index.html diff --git a/src/data/minecraft/1.7.10/images/cyan_stained_glass.png b/static/browse/minecraft/cyan_stained_glass/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/cyan_stained_glass.png rename to static/browse/minecraft/cyan_stained_glass/icon.png diff --git a/prerender/browse/minecraft/cyan_stained_glass/index.html b/static/browse/minecraft/cyan_stained_glass/index.html similarity index 100% rename from prerender/browse/minecraft/cyan_stained_glass/index.html rename to static/browse/minecraft/cyan_stained_glass/index.html diff --git a/src/data/minecraft/1.7.10/images/cyan_stained_glass_pane.png b/static/browse/minecraft/cyan_stained_glass_pane/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/cyan_stained_glass_pane.png rename to static/browse/minecraft/cyan_stained_glass_pane/icon.png diff --git a/prerender/browse/minecraft/cyan_stained_glass_pane/index.html b/static/browse/minecraft/cyan_stained_glass_pane/index.html similarity index 100% rename from prerender/browse/minecraft/cyan_stained_glass_pane/index.html rename to static/browse/minecraft/cyan_stained_glass_pane/index.html diff --git a/src/data/minecraft/1.7.10/images/cyan_wool.png b/static/browse/minecraft/cyan_wool/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/cyan_wool.png rename to static/browse/minecraft/cyan_wool/icon.png diff --git a/prerender/browse/minecraft/cyan_wool/index.html b/static/browse/minecraft/cyan_wool/index.html similarity index 100% rename from prerender/browse/minecraft/cyan_wool/index.html rename to static/browse/minecraft/cyan_wool/index.html diff --git a/src/data/minecraft/1.7.10/images/dandelion.png b/static/browse/minecraft/dandelion/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/dandelion.png rename to static/browse/minecraft/dandelion/icon.png diff --git a/prerender/browse/minecraft/dandelion/index.html b/static/browse/minecraft/dandelion/index.html similarity index 100% rename from prerender/browse/minecraft/dandelion/index.html rename to static/browse/minecraft/dandelion/index.html diff --git a/src/data/minecraft/1.7.10/images/dandelion_yellow.png b/static/browse/minecraft/dandelion_yellow/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/dandelion_yellow.png rename to static/browse/minecraft/dandelion_yellow/icon.png diff --git a/prerender/browse/minecraft/dandelion_yellow/index.html b/static/browse/minecraft/dandelion_yellow/index.html similarity index 100% rename from prerender/browse/minecraft/dandelion_yellow/index.html rename to static/browse/minecraft/dandelion_yellow/index.html diff --git a/src/data/minecraft/1.7.10/images/dark_oak_leaves.png b/static/browse/minecraft/dark_oak_leaves/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/dark_oak_leaves.png rename to static/browse/minecraft/dark_oak_leaves/icon.png diff --git a/prerender/browse/minecraft/dark_oak_leaves/index.html b/static/browse/minecraft/dark_oak_leaves/index.html similarity index 100% rename from prerender/browse/minecraft/dark_oak_leaves/index.html rename to static/browse/minecraft/dark_oak_leaves/index.html diff --git a/src/data/minecraft/1.7.10/images/dark_oak_sapling.png b/static/browse/minecraft/dark_oak_sapling/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/dark_oak_sapling.png rename to static/browse/minecraft/dark_oak_sapling/icon.png diff --git a/prerender/browse/minecraft/dark_oak_sapling/index.html b/static/browse/minecraft/dark_oak_sapling/index.html similarity index 100% rename from prerender/browse/minecraft/dark_oak_sapling/index.html rename to static/browse/minecraft/dark_oak_sapling/index.html diff --git a/src/data/minecraft/1.7.10/images/dark_oak_wood.png b/static/browse/minecraft/dark_oak_wood/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/dark_oak_wood.png rename to static/browse/minecraft/dark_oak_wood/icon.png diff --git a/prerender/browse/minecraft/dark_oak_wood/index.html b/static/browse/minecraft/dark_oak_wood/index.html similarity index 100% rename from prerender/browse/minecraft/dark_oak_wood/index.html rename to static/browse/minecraft/dark_oak_wood/index.html diff --git a/src/data/minecraft/1.7.10/images/dark_oak_wood_planks.png b/static/browse/minecraft/dark_oak_wood_planks/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/dark_oak_wood_planks.png rename to static/browse/minecraft/dark_oak_wood_planks/icon.png diff --git a/prerender/browse/minecraft/dark_oak_wood_planks/index.html b/static/browse/minecraft/dark_oak_wood_planks/index.html similarity index 100% rename from prerender/browse/minecraft/dark_oak_wood_planks/index.html rename to static/browse/minecraft/dark_oak_wood_planks/index.html diff --git a/src/data/minecraft/1.7.10/images/dark_oak_wood_slab.png b/static/browse/minecraft/dark_oak_wood_slab/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/dark_oak_wood_slab.png rename to static/browse/minecraft/dark_oak_wood_slab/icon.png diff --git a/prerender/browse/minecraft/dark_oak_wood_slab/index.html b/static/browse/minecraft/dark_oak_wood_slab/index.html similarity index 100% rename from prerender/browse/minecraft/dark_oak_wood_slab/index.html rename to static/browse/minecraft/dark_oak_wood_slab/index.html diff --git a/src/data/minecraft/1.7.10/images/dark_oak_wood_stairs.png b/static/browse/minecraft/dark_oak_wood_stairs/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/dark_oak_wood_stairs.png rename to static/browse/minecraft/dark_oak_wood_stairs/icon.png diff --git a/prerender/browse/minecraft/dark_oak_wood_stairs/index.html b/static/browse/minecraft/dark_oak_wood_stairs/index.html similarity index 100% rename from prerender/browse/minecraft/dark_oak_wood_stairs/index.html rename to static/browse/minecraft/dark_oak_wood_stairs/index.html diff --git a/src/data/minecraft/1.7.10/images/daylight_sensor.png b/static/browse/minecraft/daylight_sensor/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/daylight_sensor.png rename to static/browse/minecraft/daylight_sensor/icon.png diff --git a/prerender/browse/minecraft/daylight_sensor/index.html b/static/browse/minecraft/daylight_sensor/index.html similarity index 100% rename from prerender/browse/minecraft/daylight_sensor/index.html rename to static/browse/minecraft/daylight_sensor/index.html diff --git a/src/data/minecraft/1.7.10/images/dead_bush.png b/static/browse/minecraft/dead_bush/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/dead_bush.png rename to static/browse/minecraft/dead_bush/icon.png diff --git a/prerender/browse/minecraft/dead_bush/index.html b/static/browse/minecraft/dead_bush/index.html similarity index 100% rename from prerender/browse/minecraft/dead_bush/index.html rename to static/browse/minecraft/dead_bush/index.html diff --git a/src/data/minecraft/1.7.10/images/detector_rail.png b/static/browse/minecraft/detector_rail/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/detector_rail.png rename to static/browse/minecraft/detector_rail/icon.png diff --git a/prerender/browse/minecraft/detector_rail/index.html b/static/browse/minecraft/detector_rail/index.html similarity index 100% rename from prerender/browse/minecraft/detector_rail/index.html rename to static/browse/minecraft/detector_rail/index.html diff --git a/src/data/minecraft/1.7.10/images/diamond.png b/static/browse/minecraft/diamond/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/diamond.png rename to static/browse/minecraft/diamond/icon.png diff --git a/prerender/browse/minecraft/diamond/index.html b/static/browse/minecraft/diamond/index.html similarity index 100% rename from prerender/browse/minecraft/diamond/index.html rename to static/browse/minecraft/diamond/index.html diff --git a/src/data/minecraft/1.7.10/images/diamond_axe.png b/static/browse/minecraft/diamond_axe/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/diamond_axe.png rename to static/browse/minecraft/diamond_axe/icon.png diff --git a/prerender/browse/minecraft/diamond_axe/index.html b/static/browse/minecraft/diamond_axe/index.html similarity index 100% rename from prerender/browse/minecraft/diamond_axe/index.html rename to static/browse/minecraft/diamond_axe/index.html diff --git a/src/data/minecraft/1.7.10/images/diamond_boots.png b/static/browse/minecraft/diamond_boots/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/diamond_boots.png rename to static/browse/minecraft/diamond_boots/icon.png diff --git a/prerender/browse/minecraft/diamond_boots/index.html b/static/browse/minecraft/diamond_boots/index.html similarity index 100% rename from prerender/browse/minecraft/diamond_boots/index.html rename to static/browse/minecraft/diamond_boots/index.html diff --git a/src/data/minecraft/1.7.10/images/diamond_chestplate.png b/static/browse/minecraft/diamond_chestplate/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/diamond_chestplate.png rename to static/browse/minecraft/diamond_chestplate/icon.png diff --git a/prerender/browse/minecraft/diamond_chestplate/index.html b/static/browse/minecraft/diamond_chestplate/index.html similarity index 100% rename from prerender/browse/minecraft/diamond_chestplate/index.html rename to static/browse/minecraft/diamond_chestplate/index.html diff --git a/src/data/minecraft/1.7.10/images/diamond_helmet.png b/static/browse/minecraft/diamond_helmet/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/diamond_helmet.png rename to static/browse/minecraft/diamond_helmet/icon.png diff --git a/prerender/browse/minecraft/diamond_helmet/index.html b/static/browse/minecraft/diamond_helmet/index.html similarity index 100% rename from prerender/browse/minecraft/diamond_helmet/index.html rename to static/browse/minecraft/diamond_helmet/index.html diff --git a/src/data/minecraft/1.7.10/images/diamond_hoe.png b/static/browse/minecraft/diamond_hoe/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/diamond_hoe.png rename to static/browse/minecraft/diamond_hoe/icon.png diff --git a/prerender/browse/minecraft/diamond_hoe/index.html b/static/browse/minecraft/diamond_hoe/index.html similarity index 100% rename from prerender/browse/minecraft/diamond_hoe/index.html rename to static/browse/minecraft/diamond_hoe/index.html diff --git a/src/data/minecraft/1.7.10/images/diamond_horse_armor.png b/static/browse/minecraft/diamond_horse_armor/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/diamond_horse_armor.png rename to static/browse/minecraft/diamond_horse_armor/icon.png diff --git a/prerender/browse/minecraft/diamond_horse_armor/index.html b/static/browse/minecraft/diamond_horse_armor/index.html similarity index 100% rename from prerender/browse/minecraft/diamond_horse_armor/index.html rename to static/browse/minecraft/diamond_horse_armor/index.html diff --git a/src/data/minecraft/1.7.10/images/diamond_leggings.png b/static/browse/minecraft/diamond_leggings/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/diamond_leggings.png rename to static/browse/minecraft/diamond_leggings/icon.png diff --git a/prerender/browse/minecraft/diamond_leggings/index.html b/static/browse/minecraft/diamond_leggings/index.html similarity index 100% rename from prerender/browse/minecraft/diamond_leggings/index.html rename to static/browse/minecraft/diamond_leggings/index.html diff --git a/src/data/minecraft/1.7.10/images/diamond_ore.png b/static/browse/minecraft/diamond_ore/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/diamond_ore.png rename to static/browse/minecraft/diamond_ore/icon.png diff --git a/prerender/browse/minecraft/diamond_ore/index.html b/static/browse/minecraft/diamond_ore/index.html similarity index 100% rename from prerender/browse/minecraft/diamond_ore/index.html rename to static/browse/minecraft/diamond_ore/index.html diff --git a/src/data/minecraft/1.7.10/images/diamond_pickaxe.png b/static/browse/minecraft/diamond_pickaxe/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/diamond_pickaxe.png rename to static/browse/minecraft/diamond_pickaxe/icon.png diff --git a/prerender/browse/minecraft/diamond_pickaxe/index.html b/static/browse/minecraft/diamond_pickaxe/index.html similarity index 100% rename from prerender/browse/minecraft/diamond_pickaxe/index.html rename to static/browse/minecraft/diamond_pickaxe/index.html diff --git a/src/data/minecraft/1.7.10/images/diamond_shovel.png b/static/browse/minecraft/diamond_shovel/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/diamond_shovel.png rename to static/browse/minecraft/diamond_shovel/icon.png diff --git a/prerender/browse/minecraft/diamond_shovel/index.html b/static/browse/minecraft/diamond_shovel/index.html similarity index 100% rename from prerender/browse/minecraft/diamond_shovel/index.html rename to static/browse/minecraft/diamond_shovel/index.html diff --git a/src/data/minecraft/1.7.10/images/diamond_sword.png b/static/browse/minecraft/diamond_sword/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/diamond_sword.png rename to static/browse/minecraft/diamond_sword/icon.png diff --git a/prerender/browse/minecraft/diamond_sword/index.html b/static/browse/minecraft/diamond_sword/index.html similarity index 100% rename from prerender/browse/minecraft/diamond_sword/index.html rename to static/browse/minecraft/diamond_sword/index.html diff --git a/src/data/minecraft/1.7.10/images/dirt.png b/static/browse/minecraft/dirt/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/dirt.png rename to static/browse/minecraft/dirt/icon.png diff --git a/prerender/browse/minecraft/dirt/index.html b/static/browse/minecraft/dirt/index.html similarity index 100% rename from prerender/browse/minecraft/dirt/index.html rename to static/browse/minecraft/dirt/index.html diff --git a/src/data/minecraft/1.7.10/images/dispenser.png b/static/browse/minecraft/dispenser/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/dispenser.png rename to static/browse/minecraft/dispenser/icon.png diff --git a/prerender/browse/minecraft/dispenser/index.html b/static/browse/minecraft/dispenser/index.html similarity index 100% rename from prerender/browse/minecraft/dispenser/index.html rename to static/browse/minecraft/dispenser/index.html diff --git a/src/data/minecraft/1.7.10/images/double_tallgrass.png b/static/browse/minecraft/double_tallgrass/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/double_tallgrass.png rename to static/browse/minecraft/double_tallgrass/icon.png diff --git a/prerender/browse/minecraft/double_tallgrass/index.html b/static/browse/minecraft/double_tallgrass/index.html similarity index 100% rename from prerender/browse/minecraft/double_tallgrass/index.html rename to static/browse/minecraft/double_tallgrass/index.html diff --git a/src/data/minecraft/1.7.10/images/dragon_egg.png b/static/browse/minecraft/dragon_egg/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/dragon_egg.png rename to static/browse/minecraft/dragon_egg/icon.png diff --git a/prerender/browse/minecraft/dragon_egg/index.html b/static/browse/minecraft/dragon_egg/index.html similarity index 100% rename from prerender/browse/minecraft/dragon_egg/index.html rename to static/browse/minecraft/dragon_egg/index.html diff --git a/src/data/minecraft/1.7.10/images/dropper.png b/static/browse/minecraft/dropper/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/dropper.png rename to static/browse/minecraft/dropper/icon.png diff --git a/prerender/browse/minecraft/dropper/index.html b/static/browse/minecraft/dropper/index.html similarity index 100% rename from prerender/browse/minecraft/dropper/index.html rename to static/browse/minecraft/dropper/index.html diff --git a/src/data/minecraft/1.7.10/images/egg.png b/static/browse/minecraft/egg/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/egg.png rename to static/browse/minecraft/egg/icon.png diff --git a/prerender/browse/minecraft/egg/index.html b/static/browse/minecraft/egg/index.html similarity index 100% rename from prerender/browse/minecraft/egg/index.html rename to static/browse/minecraft/egg/index.html diff --git a/src/data/minecraft/1.7.10/images/emerald.png b/static/browse/minecraft/emerald/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/emerald.png rename to static/browse/minecraft/emerald/icon.png diff --git a/prerender/browse/minecraft/emerald/index.html b/static/browse/minecraft/emerald/index.html similarity index 100% rename from prerender/browse/minecraft/emerald/index.html rename to static/browse/minecraft/emerald/index.html diff --git a/src/data/minecraft/1.7.10/images/emerald_ore.png b/static/browse/minecraft/emerald_ore/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/emerald_ore.png rename to static/browse/minecraft/emerald_ore/icon.png diff --git a/prerender/browse/minecraft/emerald_ore/index.html b/static/browse/minecraft/emerald_ore/index.html similarity index 100% rename from prerender/browse/minecraft/emerald_ore/index.html rename to static/browse/minecraft/emerald_ore/index.html diff --git a/src/data/minecraft/1.7.10/images/empty_map.png b/static/browse/minecraft/empty_map/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/empty_map.png rename to static/browse/minecraft/empty_map/icon.png diff --git a/prerender/browse/minecraft/empty_map/index.html b/static/browse/minecraft/empty_map/index.html similarity index 100% rename from prerender/browse/minecraft/empty_map/index.html rename to static/browse/minecraft/empty_map/index.html diff --git a/src/data/minecraft/1.7.10/images/enchanted_book.png b/static/browse/minecraft/enchanted_book/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/enchanted_book.png rename to static/browse/minecraft/enchanted_book/icon.png diff --git a/prerender/browse/minecraft/enchanted_book/index.html b/static/browse/minecraft/enchanted_book/index.html similarity index 100% rename from prerender/browse/minecraft/enchanted_book/index.html rename to static/browse/minecraft/enchanted_book/index.html diff --git a/src/data/minecraft/1.7.10/images/enchantment_table.png b/static/browse/minecraft/enchantment_table/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/enchantment_table.png rename to static/browse/minecraft/enchantment_table/icon.png diff --git a/prerender/browse/minecraft/enchantment_table/index.html b/static/browse/minecraft/enchantment_table/index.html similarity index 100% rename from prerender/browse/minecraft/enchantment_table/index.html rename to static/browse/minecraft/enchantment_table/index.html diff --git a/src/data/minecraft/1.7.10/images/end_portal.png b/static/browse/minecraft/end_portal/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/end_portal.png rename to static/browse/minecraft/end_portal/icon.png diff --git a/src/data/minecraft/1.7.10/images/end_stone.png b/static/browse/minecraft/end_stone/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/end_stone.png rename to static/browse/minecraft/end_stone/icon.png diff --git a/prerender/browse/minecraft/end_stone/index.html b/static/browse/minecraft/end_stone/index.html similarity index 100% rename from prerender/browse/minecraft/end_stone/index.html rename to static/browse/minecraft/end_stone/index.html diff --git a/src/data/minecraft/1.7.10/images/ender_chest.png b/static/browse/minecraft/ender_chest/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/ender_chest.png rename to static/browse/minecraft/ender_chest/icon.png diff --git a/prerender/browse/minecraft/ender_chest/index.html b/static/browse/minecraft/ender_chest/index.html similarity index 100% rename from prerender/browse/minecraft/ender_chest/index.html rename to static/browse/minecraft/ender_chest/index.html diff --git a/src/data/minecraft/1.7.10/images/ender_pearl.png b/static/browse/minecraft/ender_pearl/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/ender_pearl.png rename to static/browse/minecraft/ender_pearl/icon.png diff --git a/prerender/browse/minecraft/ender_pearl/index.html b/static/browse/minecraft/ender_pearl/index.html similarity index 100% rename from prerender/browse/minecraft/ender_pearl/index.html rename to static/browse/minecraft/ender_pearl/index.html diff --git a/src/data/minecraft/1.7.10/images/eye_of_ender.png b/static/browse/minecraft/eye_of_ender/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/eye_of_ender.png rename to static/browse/minecraft/eye_of_ender/icon.png diff --git a/prerender/browse/minecraft/eye_of_ender/index.html b/static/browse/minecraft/eye_of_ender/index.html similarity index 100% rename from prerender/browse/minecraft/eye_of_ender/index.html rename to static/browse/minecraft/eye_of_ender/index.html diff --git a/src/data/minecraft/1.7.10/images/farmland.png b/static/browse/minecraft/farmland/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/farmland.png rename to static/browse/minecraft/farmland/icon.png diff --git a/src/data/minecraft/1.7.10/images/feather.png b/static/browse/minecraft/feather/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/feather.png rename to static/browse/minecraft/feather/icon.png diff --git a/prerender/browse/minecraft/feather/index.html b/static/browse/minecraft/feather/index.html similarity index 100% rename from prerender/browse/minecraft/feather/index.html rename to static/browse/minecraft/feather/index.html diff --git a/src/data/minecraft/1.7.10/images/fence.png b/static/browse/minecraft/fence/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/fence.png rename to static/browse/minecraft/fence/icon.png diff --git a/prerender/browse/minecraft/fence/index.html b/static/browse/minecraft/fence/index.html similarity index 100% rename from prerender/browse/minecraft/fence/index.html rename to static/browse/minecraft/fence/index.html diff --git a/src/data/minecraft/1.7.10/images/fence_gate.png b/static/browse/minecraft/fence_gate/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/fence_gate.png rename to static/browse/minecraft/fence_gate/icon.png diff --git a/prerender/browse/minecraft/fence_gate/index.html b/static/browse/minecraft/fence_gate/index.html similarity index 100% rename from prerender/browse/minecraft/fence_gate/index.html rename to static/browse/minecraft/fence_gate/index.html diff --git a/src/data/minecraft/1.7.10/images/fermented_spider_eye.png b/static/browse/minecraft/fermented_spider_eye/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/fermented_spider_eye.png rename to static/browse/minecraft/fermented_spider_eye/icon.png diff --git a/prerender/browse/minecraft/fermented_spider_eye/index.html b/static/browse/minecraft/fermented_spider_eye/index.html similarity index 100% rename from prerender/browse/minecraft/fermented_spider_eye/index.html rename to static/browse/minecraft/fermented_spider_eye/index.html diff --git a/src/data/minecraft/1.7.10/images/fern.png b/static/browse/minecraft/fern/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/fern.png rename to static/browse/minecraft/fern/icon.png diff --git a/prerender/browse/minecraft/fern/index.html b/static/browse/minecraft/fern/index.html similarity index 100% rename from prerender/browse/minecraft/fern/index.html rename to static/browse/minecraft/fern/index.html diff --git a/src/data/minecraft/1.7.10/images/fire.png b/static/browse/minecraft/fire/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/fire.png rename to static/browse/minecraft/fire/icon.png diff --git a/prerender/browse/minecraft/fire/index.html b/static/browse/minecraft/fire/index.html similarity index 100% rename from prerender/browse/minecraft/fire/index.html rename to static/browse/minecraft/fire/index.html diff --git a/src/data/minecraft/1.7.10/images/fire_charge.png b/static/browse/minecraft/fire_charge/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/fire_charge.png rename to static/browse/minecraft/fire_charge/icon.png diff --git a/prerender/browse/minecraft/fire_charge/index.html b/static/browse/minecraft/fire_charge/index.html similarity index 100% rename from prerender/browse/minecraft/fire_charge/index.html rename to static/browse/minecraft/fire_charge/index.html diff --git a/src/data/minecraft/1.7.10/images/firework_rocket_duration_1.png b/static/browse/minecraft/firework_rocket_duration_1/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/firework_rocket_duration_1.png rename to static/browse/minecraft/firework_rocket_duration_1/icon.png diff --git a/prerender/browse/minecraft/firework_rocket_duration_1/index.html b/static/browse/minecraft/firework_rocket_duration_1/index.html similarity index 100% rename from prerender/browse/minecraft/firework_rocket_duration_1/index.html rename to static/browse/minecraft/firework_rocket_duration_1/index.html diff --git a/src/data/minecraft/1.7.10/images/firework_rocket_duration_2.png b/static/browse/minecraft/firework_rocket_duration_2/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/firework_rocket_duration_2.png rename to static/browse/minecraft/firework_rocket_duration_2/icon.png diff --git a/prerender/browse/minecraft/firework_rocket_duration_2/index.html b/static/browse/minecraft/firework_rocket_duration_2/index.html similarity index 100% rename from prerender/browse/minecraft/firework_rocket_duration_2/index.html rename to static/browse/minecraft/firework_rocket_duration_2/index.html diff --git a/src/data/minecraft/1.7.10/images/firework_rocket_duration_3.png b/static/browse/minecraft/firework_rocket_duration_3/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/firework_rocket_duration_3.png rename to static/browse/minecraft/firework_rocket_duration_3/icon.png diff --git a/prerender/browse/minecraft/firework_rocket_duration_3/index.html b/static/browse/minecraft/firework_rocket_duration_3/index.html similarity index 100% rename from prerender/browse/minecraft/firework_rocket_duration_3/index.html rename to static/browse/minecraft/firework_rocket_duration_3/index.html diff --git a/src/data/minecraft/1.7.10/images/firework_star.png b/static/browse/minecraft/firework_star/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/firework_star.png rename to static/browse/minecraft/firework_star/icon.png diff --git a/prerender/browse/minecraft/firework_star/index.html b/static/browse/minecraft/firework_star/index.html similarity index 100% rename from prerender/browse/minecraft/firework_star/index.html rename to static/browse/minecraft/firework_star/index.html diff --git a/src/data/minecraft/1.7.10/images/fishing_rod.png b/static/browse/minecraft/fishing_rod/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/fishing_rod.png rename to static/browse/minecraft/fishing_rod/icon.png diff --git a/prerender/browse/minecraft/fishing_rod/index.html b/static/browse/minecraft/fishing_rod/index.html similarity index 100% rename from prerender/browse/minecraft/fishing_rod/index.html rename to static/browse/minecraft/fishing_rod/index.html diff --git a/src/data/minecraft/1.7.10/images/flint.png b/static/browse/minecraft/flint/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/flint.png rename to static/browse/minecraft/flint/icon.png diff --git a/prerender/browse/minecraft/flint/index.html b/static/browse/minecraft/flint/index.html similarity index 100% rename from prerender/browse/minecraft/flint/index.html rename to static/browse/minecraft/flint/index.html diff --git a/src/data/minecraft/1.7.10/images/flint_and_steel.png b/static/browse/minecraft/flint_and_steel/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/flint_and_steel.png rename to static/browse/minecraft/flint_and_steel/icon.png diff --git a/prerender/browse/minecraft/flint_and_steel/index.html b/static/browse/minecraft/flint_and_steel/index.html similarity index 100% rename from prerender/browse/minecraft/flint_and_steel/index.html rename to static/browse/minecraft/flint_and_steel/index.html diff --git a/src/data/minecraft/1.7.10/images/flower_pot.png b/static/browse/minecraft/flower_pot/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/flower_pot.png rename to static/browse/minecraft/flower_pot/icon.png diff --git a/prerender/browse/minecraft/flower_pot/index.html b/static/browse/minecraft/flower_pot/index.html similarity index 100% rename from prerender/browse/minecraft/flower_pot/index.html rename to static/browse/minecraft/flower_pot/index.html diff --git a/src/data/minecraft/1.7.10/images/furnace.png b/static/browse/minecraft/furnace/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/furnace.png rename to static/browse/minecraft/furnace/icon.png diff --git a/prerender/browse/minecraft/furnace/index.html b/static/browse/minecraft/furnace/index.html similarity index 100% rename from prerender/browse/minecraft/furnace/index.html rename to static/browse/minecraft/furnace/index.html diff --git a/src/data/minecraft/1.7.10/images/furnace_fuel.png b/static/browse/minecraft/furnace_fuel/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/furnace_fuel.png rename to static/browse/minecraft/furnace_fuel/icon.png diff --git a/src/data/minecraft/1.7.10/images/ghast_tear.png b/static/browse/minecraft/ghast_tear/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/ghast_tear.png rename to static/browse/minecraft/ghast_tear/icon.png diff --git a/prerender/browse/minecraft/ghast_tear/index.html b/static/browse/minecraft/ghast_tear/index.html similarity index 100% rename from prerender/browse/minecraft/ghast_tear/index.html rename to static/browse/minecraft/ghast_tear/index.html diff --git a/src/data/minecraft/1.7.10/images/glass.png b/static/browse/minecraft/glass/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/glass.png rename to static/browse/minecraft/glass/icon.png diff --git a/prerender/browse/minecraft/glass/index.html b/static/browse/minecraft/glass/index.html similarity index 100% rename from prerender/browse/minecraft/glass/index.html rename to static/browse/minecraft/glass/index.html diff --git a/src/data/minecraft/1.7.10/images/glass_bottle.png b/static/browse/minecraft/glass_bottle/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/glass_bottle.png rename to static/browse/minecraft/glass_bottle/icon.png diff --git a/prerender/browse/minecraft/glass_bottle/index.html b/static/browse/minecraft/glass_bottle/index.html similarity index 100% rename from prerender/browse/minecraft/glass_bottle/index.html rename to static/browse/minecraft/glass_bottle/index.html diff --git a/src/data/minecraft/1.7.10/images/glass_pane.png b/static/browse/minecraft/glass_pane/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/glass_pane.png rename to static/browse/minecraft/glass_pane/icon.png diff --git a/prerender/browse/minecraft/glass_pane/index.html b/static/browse/minecraft/glass_pane/index.html similarity index 100% rename from prerender/browse/minecraft/glass_pane/index.html rename to static/browse/minecraft/glass_pane/index.html diff --git a/src/data/minecraft/1.7.10/images/glistering_melon.png b/static/browse/minecraft/glistering_melon/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/glistering_melon.png rename to static/browse/minecraft/glistering_melon/icon.png diff --git a/prerender/browse/minecraft/glistering_melon/index.html b/static/browse/minecraft/glistering_melon/index.html similarity index 100% rename from prerender/browse/minecraft/glistering_melon/index.html rename to static/browse/minecraft/glistering_melon/index.html diff --git a/src/data/minecraft/1.7.10/images/glowstone.png b/static/browse/minecraft/glowstone/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/glowstone.png rename to static/browse/minecraft/glowstone/icon.png diff --git a/prerender/browse/minecraft/glowstone/index.html b/static/browse/minecraft/glowstone/index.html similarity index 100% rename from prerender/browse/minecraft/glowstone/index.html rename to static/browse/minecraft/glowstone/index.html diff --git a/src/data/minecraft/1.7.10/images/glowstone_dust.png b/static/browse/minecraft/glowstone_dust/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/glowstone_dust.png rename to static/browse/minecraft/glowstone_dust/icon.png diff --git a/prerender/browse/minecraft/glowstone_dust/index.html b/static/browse/minecraft/glowstone_dust/index.html similarity index 100% rename from prerender/browse/minecraft/glowstone_dust/index.html rename to static/browse/minecraft/glowstone_dust/index.html diff --git a/src/data/minecraft/1.7.10/images/gold_horse_armor.png b/static/browse/minecraft/gold_horse_armor/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/gold_horse_armor.png rename to static/browse/minecraft/gold_horse_armor/icon.png diff --git a/prerender/browse/minecraft/gold_horse_armor/index.html b/static/browse/minecraft/gold_horse_armor/index.html similarity index 100% rename from prerender/browse/minecraft/gold_horse_armor/index.html rename to static/browse/minecraft/gold_horse_armor/index.html diff --git a/src/data/minecraft/1.7.10/images/gold_ingot.png b/static/browse/minecraft/gold_ingot/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/gold_ingot.png rename to static/browse/minecraft/gold_ingot/icon.png diff --git a/prerender/browse/minecraft/gold_ingot/index.html b/static/browse/minecraft/gold_ingot/index.html similarity index 100% rename from prerender/browse/minecraft/gold_ingot/index.html rename to static/browse/minecraft/gold_ingot/index.html diff --git a/src/data/minecraft/1.7.10/images/gold_nugget.png b/static/browse/minecraft/gold_nugget/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/gold_nugget.png rename to static/browse/minecraft/gold_nugget/icon.png diff --git a/prerender/browse/minecraft/gold_nugget/index.html b/static/browse/minecraft/gold_nugget/index.html similarity index 100% rename from prerender/browse/minecraft/gold_nugget/index.html rename to static/browse/minecraft/gold_nugget/index.html diff --git a/src/data/minecraft/1.7.10/images/gold_ore.png b/static/browse/minecraft/gold_ore/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/gold_ore.png rename to static/browse/minecraft/gold_ore/icon.png diff --git a/prerender/browse/minecraft/gold_ore/index.html b/static/browse/minecraft/gold_ore/index.html similarity index 100% rename from prerender/browse/minecraft/gold_ore/index.html rename to static/browse/minecraft/gold_ore/index.html diff --git a/src/data/minecraft/1.7.10/images/golden_apple.png b/static/browse/minecraft/golden_apple/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/golden_apple.png rename to static/browse/minecraft/golden_apple/icon.png diff --git a/prerender/browse/minecraft/golden_apple/index.html b/static/browse/minecraft/golden_apple/index.html similarity index 100% rename from prerender/browse/minecraft/golden_apple/index.html rename to static/browse/minecraft/golden_apple/index.html diff --git a/src/data/minecraft/1.7.10/images/golden_apple_magic.png b/static/browse/minecraft/golden_apple_magic/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/golden_apple_magic.png rename to static/browse/minecraft/golden_apple_magic/icon.png diff --git a/prerender/browse/minecraft/golden_apple_magic/index.html b/static/browse/minecraft/golden_apple_magic/index.html similarity index 100% rename from prerender/browse/minecraft/golden_apple_magic/index.html rename to static/browse/minecraft/golden_apple_magic/index.html diff --git a/src/data/minecraft/1.7.10/images/golden_axe.png b/static/browse/minecraft/golden_axe/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/golden_axe.png rename to static/browse/minecraft/golden_axe/icon.png diff --git a/prerender/browse/minecraft/golden_axe/index.html b/static/browse/minecraft/golden_axe/index.html similarity index 100% rename from prerender/browse/minecraft/golden_axe/index.html rename to static/browse/minecraft/golden_axe/index.html diff --git a/src/data/minecraft/1.7.10/images/golden_boots.png b/static/browse/minecraft/golden_boots/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/golden_boots.png rename to static/browse/minecraft/golden_boots/icon.png diff --git a/prerender/browse/minecraft/golden_boots/index.html b/static/browse/minecraft/golden_boots/index.html similarity index 100% rename from prerender/browse/minecraft/golden_boots/index.html rename to static/browse/minecraft/golden_boots/index.html diff --git a/src/data/minecraft/1.7.10/images/golden_carrot.png b/static/browse/minecraft/golden_carrot/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/golden_carrot.png rename to static/browse/minecraft/golden_carrot/icon.png diff --git a/prerender/browse/minecraft/golden_carrot/index.html b/static/browse/minecraft/golden_carrot/index.html similarity index 100% rename from prerender/browse/minecraft/golden_carrot/index.html rename to static/browse/minecraft/golden_carrot/index.html diff --git a/src/data/minecraft/1.7.10/images/golden_chestplate.png b/static/browse/minecraft/golden_chestplate/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/golden_chestplate.png rename to static/browse/minecraft/golden_chestplate/icon.png diff --git a/prerender/browse/minecraft/golden_chestplate/index.html b/static/browse/minecraft/golden_chestplate/index.html similarity index 100% rename from prerender/browse/minecraft/golden_chestplate/index.html rename to static/browse/minecraft/golden_chestplate/index.html diff --git a/src/data/minecraft/1.7.10/images/golden_helmet.png b/static/browse/minecraft/golden_helmet/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/golden_helmet.png rename to static/browse/minecraft/golden_helmet/icon.png diff --git a/prerender/browse/minecraft/golden_helmet/index.html b/static/browse/minecraft/golden_helmet/index.html similarity index 100% rename from prerender/browse/minecraft/golden_helmet/index.html rename to static/browse/minecraft/golden_helmet/index.html diff --git a/src/data/minecraft/1.7.10/images/golden_hoe.png b/static/browse/minecraft/golden_hoe/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/golden_hoe.png rename to static/browse/minecraft/golden_hoe/icon.png diff --git a/prerender/browse/minecraft/golden_hoe/index.html b/static/browse/minecraft/golden_hoe/index.html similarity index 100% rename from prerender/browse/minecraft/golden_hoe/index.html rename to static/browse/minecraft/golden_hoe/index.html diff --git a/src/data/minecraft/1.7.10/images/golden_leggings.png b/static/browse/minecraft/golden_leggings/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/golden_leggings.png rename to static/browse/minecraft/golden_leggings/icon.png diff --git a/prerender/browse/minecraft/golden_leggings/index.html b/static/browse/minecraft/golden_leggings/index.html similarity index 100% rename from prerender/browse/minecraft/golden_leggings/index.html rename to static/browse/minecraft/golden_leggings/index.html diff --git a/src/data/minecraft/1.7.10/images/golden_pickaxe.png b/static/browse/minecraft/golden_pickaxe/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/golden_pickaxe.png rename to static/browse/minecraft/golden_pickaxe/icon.png diff --git a/prerender/browse/minecraft/golden_pickaxe/index.html b/static/browse/minecraft/golden_pickaxe/index.html similarity index 100% rename from prerender/browse/minecraft/golden_pickaxe/index.html rename to static/browse/minecraft/golden_pickaxe/index.html diff --git a/src/data/minecraft/1.7.10/images/golden_shovel.png b/static/browse/minecraft/golden_shovel/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/golden_shovel.png rename to static/browse/minecraft/golden_shovel/icon.png diff --git a/prerender/browse/minecraft/golden_shovel/index.html b/static/browse/minecraft/golden_shovel/index.html similarity index 100% rename from prerender/browse/minecraft/golden_shovel/index.html rename to static/browse/minecraft/golden_shovel/index.html diff --git a/src/data/minecraft/1.7.10/images/golden_sword.png b/static/browse/minecraft/golden_sword/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/golden_sword.png rename to static/browse/minecraft/golden_sword/icon.png diff --git a/prerender/browse/minecraft/golden_sword/index.html b/static/browse/minecraft/golden_sword/index.html similarity index 100% rename from prerender/browse/minecraft/golden_sword/index.html rename to static/browse/minecraft/golden_sword/index.html diff --git a/src/data/minecraft/1.7.10/images/grass.png b/static/browse/minecraft/grass/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/grass.png rename to static/browse/minecraft/grass/icon.png diff --git a/prerender/browse/minecraft/grass/index.html b/static/browse/minecraft/grass/index.html similarity index 100% rename from prerender/browse/minecraft/grass/index.html rename to static/browse/minecraft/grass/index.html diff --git a/src/data/minecraft/1.7.10/images/grass_block.png b/static/browse/minecraft/grass_block/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/grass_block.png rename to static/browse/minecraft/grass_block/icon.png diff --git a/prerender/browse/minecraft/grass_block/index.html b/static/browse/minecraft/grass_block/index.html similarity index 100% rename from prerender/browse/minecraft/grass_block/index.html rename to static/browse/minecraft/grass_block/index.html diff --git a/src/data/minecraft/1.7.10/images/gravel.png b/static/browse/minecraft/gravel/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/gravel.png rename to static/browse/minecraft/gravel/icon.png diff --git a/prerender/browse/minecraft/gravel/index.html b/static/browse/minecraft/gravel/index.html similarity index 100% rename from prerender/browse/minecraft/gravel/index.html rename to static/browse/minecraft/gravel/index.html diff --git a/src/data/minecraft/1.7.10/images/gray_carpet.png b/static/browse/minecraft/gray_carpet/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/gray_carpet.png rename to static/browse/minecraft/gray_carpet/icon.png diff --git a/prerender/browse/minecraft/gray_carpet/index.html b/static/browse/minecraft/gray_carpet/index.html similarity index 100% rename from prerender/browse/minecraft/gray_carpet/index.html rename to static/browse/minecraft/gray_carpet/index.html diff --git a/src/data/minecraft/1.7.10/images/gray_dye.png b/static/browse/minecraft/gray_dye/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/gray_dye.png rename to static/browse/minecraft/gray_dye/icon.png diff --git a/prerender/browse/minecraft/gray_dye/index.html b/static/browse/minecraft/gray_dye/index.html similarity index 100% rename from prerender/browse/minecraft/gray_dye/index.html rename to static/browse/minecraft/gray_dye/index.html diff --git a/src/data/minecraft/1.7.10/images/gray_stained_clay.png b/static/browse/minecraft/gray_stained_clay/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/gray_stained_clay.png rename to static/browse/minecraft/gray_stained_clay/icon.png diff --git a/prerender/browse/minecraft/gray_stained_clay/index.html b/static/browse/minecraft/gray_stained_clay/index.html similarity index 100% rename from prerender/browse/minecraft/gray_stained_clay/index.html rename to static/browse/minecraft/gray_stained_clay/index.html diff --git a/src/data/minecraft/1.7.10/images/gray_stained_glass.png b/static/browse/minecraft/gray_stained_glass/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/gray_stained_glass.png rename to static/browse/minecraft/gray_stained_glass/icon.png diff --git a/prerender/browse/minecraft/gray_stained_glass/index.html b/static/browse/minecraft/gray_stained_glass/index.html similarity index 100% rename from prerender/browse/minecraft/gray_stained_glass/index.html rename to static/browse/minecraft/gray_stained_glass/index.html diff --git a/src/data/minecraft/1.7.10/images/gray_stained_glass_pane.png b/static/browse/minecraft/gray_stained_glass_pane/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/gray_stained_glass_pane.png rename to static/browse/minecraft/gray_stained_glass_pane/icon.png diff --git a/prerender/browse/minecraft/gray_stained_glass_pane/index.html b/static/browse/minecraft/gray_stained_glass_pane/index.html similarity index 100% rename from prerender/browse/minecraft/gray_stained_glass_pane/index.html rename to static/browse/minecraft/gray_stained_glass_pane/index.html diff --git a/src/data/minecraft/1.7.10/images/gray_wool.png b/static/browse/minecraft/gray_wool/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/gray_wool.png rename to static/browse/minecraft/gray_wool/icon.png diff --git a/prerender/browse/minecraft/gray_wool/index.html b/static/browse/minecraft/gray_wool/index.html similarity index 100% rename from prerender/browse/minecraft/gray_wool/index.html rename to static/browse/minecraft/gray_wool/index.html diff --git a/src/data/minecraft/1.7.10/images/green_carpet.png b/static/browse/minecraft/green_carpet/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/green_carpet.png rename to static/browse/minecraft/green_carpet/icon.png diff --git a/prerender/browse/minecraft/green_carpet/index.html b/static/browse/minecraft/green_carpet/index.html similarity index 100% rename from prerender/browse/minecraft/green_carpet/index.html rename to static/browse/minecraft/green_carpet/index.html diff --git a/src/data/minecraft/1.7.10/images/green_stained_clay.png b/static/browse/minecraft/green_stained_clay/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/green_stained_clay.png rename to static/browse/minecraft/green_stained_clay/icon.png diff --git a/prerender/browse/minecraft/green_stained_clay/index.html b/static/browse/minecraft/green_stained_clay/index.html similarity index 100% rename from prerender/browse/minecraft/green_stained_clay/index.html rename to static/browse/minecraft/green_stained_clay/index.html diff --git a/src/data/minecraft/1.7.10/images/green_stained_glass.png b/static/browse/minecraft/green_stained_glass/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/green_stained_glass.png rename to static/browse/minecraft/green_stained_glass/icon.png diff --git a/prerender/browse/minecraft/green_stained_glass/index.html b/static/browse/minecraft/green_stained_glass/index.html similarity index 100% rename from prerender/browse/minecraft/green_stained_glass/index.html rename to static/browse/minecraft/green_stained_glass/index.html diff --git a/src/data/minecraft/1.7.10/images/green_stained_glass_pane.png b/static/browse/minecraft/green_stained_glass_pane/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/green_stained_glass_pane.png rename to static/browse/minecraft/green_stained_glass_pane/icon.png diff --git a/prerender/browse/minecraft/green_stained_glass_pane/index.html b/static/browse/minecraft/green_stained_glass_pane/index.html similarity index 100% rename from prerender/browse/minecraft/green_stained_glass_pane/index.html rename to static/browse/minecraft/green_stained_glass_pane/index.html diff --git a/src/data/minecraft/1.7.10/images/green_wool.png b/static/browse/minecraft/green_wool/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/green_wool.png rename to static/browse/minecraft/green_wool/icon.png diff --git a/prerender/browse/minecraft/green_wool/index.html b/static/browse/minecraft/green_wool/index.html similarity index 100% rename from prerender/browse/minecraft/green_wool/index.html rename to static/browse/minecraft/green_wool/index.html diff --git a/src/data/minecraft/1.7.10/images/gunpowder.png b/static/browse/minecraft/gunpowder/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/gunpowder.png rename to static/browse/minecraft/gunpowder/icon.png diff --git a/prerender/browse/minecraft/gunpowder/index.html b/static/browse/minecraft/gunpowder/index.html similarity index 100% rename from prerender/browse/minecraft/gunpowder/index.html rename to static/browse/minecraft/gunpowder/index.html diff --git a/src/data/minecraft/1.7.10/images/hardened_clay.png b/static/browse/minecraft/hardened_clay/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/hardened_clay.png rename to static/browse/minecraft/hardened_clay/icon.png diff --git a/prerender/browse/minecraft/hardened_clay/index.html b/static/browse/minecraft/hardened_clay/index.html similarity index 100% rename from prerender/browse/minecraft/hardened_clay/index.html rename to static/browse/minecraft/hardened_clay/index.html diff --git a/src/data/minecraft/1.7.10/images/hay_bale.png b/static/browse/minecraft/hay_bale/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/hay_bale.png rename to static/browse/minecraft/hay_bale/icon.png diff --git a/prerender/browse/minecraft/hay_bale/index.html b/static/browse/minecraft/hay_bale/index.html similarity index 100% rename from prerender/browse/minecraft/hay_bale/index.html rename to static/browse/minecraft/hay_bale/index.html diff --git a/src/data/minecraft/1.7.10/images/head.png b/static/browse/minecraft/head/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/head.png rename to static/browse/minecraft/head/icon.png diff --git a/prerender/browse/minecraft/head/index.html b/static/browse/minecraft/head/index.html similarity index 100% rename from prerender/browse/minecraft/head/index.html rename to static/browse/minecraft/head/index.html diff --git a/src/data/minecraft/1.7.10/images/hopper.png b/static/browse/minecraft/hopper/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/hopper.png rename to static/browse/minecraft/hopper/icon.png diff --git a/prerender/browse/minecraft/hopper/index.html b/static/browse/minecraft/hopper/index.html similarity index 100% rename from prerender/browse/minecraft/hopper/index.html rename to static/browse/minecraft/hopper/index.html diff --git a/src/data/minecraft/1.7.10/images/ice.png b/static/browse/minecraft/ice/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/ice.png rename to static/browse/minecraft/ice/icon.png diff --git a/prerender/browse/minecraft/ice/index.html b/static/browse/minecraft/ice/index.html similarity index 100% rename from prerender/browse/minecraft/ice/index.html rename to static/browse/minecraft/ice/index.html diff --git a/src/data/minecraft/logo.png b/static/browse/minecraft/icon.png similarity index 100% rename from src/data/minecraft/logo.png rename to static/browse/minecraft/icon.png diff --git a/prerender/browse/minecraft/index.html b/static/browse/minecraft/index.html similarity index 100% rename from prerender/browse/minecraft/index.html rename to static/browse/minecraft/index.html diff --git a/src/data/minecraft/1.7.10/images/ink_sac.png b/static/browse/minecraft/ink_sac/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/ink_sac.png rename to static/browse/minecraft/ink_sac/icon.png diff --git a/prerender/browse/minecraft/ink_sac/index.html b/static/browse/minecraft/ink_sac/index.html similarity index 100% rename from prerender/browse/minecraft/ink_sac/index.html rename to static/browse/minecraft/ink_sac/index.html diff --git a/src/data/minecraft/1.7.10/images/iron_axe.png b/static/browse/minecraft/iron_axe/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/iron_axe.png rename to static/browse/minecraft/iron_axe/icon.png diff --git a/prerender/browse/minecraft/iron_axe/index.html b/static/browse/minecraft/iron_axe/index.html similarity index 100% rename from prerender/browse/minecraft/iron_axe/index.html rename to static/browse/minecraft/iron_axe/index.html diff --git a/src/data/minecraft/1.7.10/images/iron_bars.png b/static/browse/minecraft/iron_bars/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/iron_bars.png rename to static/browse/minecraft/iron_bars/icon.png diff --git a/prerender/browse/minecraft/iron_bars/index.html b/static/browse/minecraft/iron_bars/index.html similarity index 100% rename from prerender/browse/minecraft/iron_bars/index.html rename to static/browse/minecraft/iron_bars/index.html diff --git a/src/data/minecraft/1.7.10/images/iron_boots.png b/static/browse/minecraft/iron_boots/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/iron_boots.png rename to static/browse/minecraft/iron_boots/icon.png diff --git a/prerender/browse/minecraft/iron_boots/index.html b/static/browse/minecraft/iron_boots/index.html similarity index 100% rename from prerender/browse/minecraft/iron_boots/index.html rename to static/browse/minecraft/iron_boots/index.html diff --git a/src/data/minecraft/1.7.10/images/iron_chestplate.png b/static/browse/minecraft/iron_chestplate/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/iron_chestplate.png rename to static/browse/minecraft/iron_chestplate/icon.png diff --git a/prerender/browse/minecraft/iron_chestplate/index.html b/static/browse/minecraft/iron_chestplate/index.html similarity index 100% rename from prerender/browse/minecraft/iron_chestplate/index.html rename to static/browse/minecraft/iron_chestplate/index.html diff --git a/src/data/minecraft/1.7.10/images/iron_door.png b/static/browse/minecraft/iron_door/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/iron_door.png rename to static/browse/minecraft/iron_door/icon.png diff --git a/prerender/browse/minecraft/iron_door/index.html b/static/browse/minecraft/iron_door/index.html similarity index 100% rename from prerender/browse/minecraft/iron_door/index.html rename to static/browse/minecraft/iron_door/index.html diff --git a/src/data/minecraft/1.7.10/images/iron_helmet.png b/static/browse/minecraft/iron_helmet/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/iron_helmet.png rename to static/browse/minecraft/iron_helmet/icon.png diff --git a/prerender/browse/minecraft/iron_helmet/index.html b/static/browse/minecraft/iron_helmet/index.html similarity index 100% rename from prerender/browse/minecraft/iron_helmet/index.html rename to static/browse/minecraft/iron_helmet/index.html diff --git a/src/data/minecraft/1.7.10/images/iron_hoe.png b/static/browse/minecraft/iron_hoe/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/iron_hoe.png rename to static/browse/minecraft/iron_hoe/icon.png diff --git a/prerender/browse/minecraft/iron_hoe/index.html b/static/browse/minecraft/iron_hoe/index.html similarity index 100% rename from prerender/browse/minecraft/iron_hoe/index.html rename to static/browse/minecraft/iron_hoe/index.html diff --git a/src/data/minecraft/1.7.10/images/iron_horse_armor.png b/static/browse/minecraft/iron_horse_armor/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/iron_horse_armor.png rename to static/browse/minecraft/iron_horse_armor/icon.png diff --git a/prerender/browse/minecraft/iron_horse_armor/index.html b/static/browse/minecraft/iron_horse_armor/index.html similarity index 100% rename from prerender/browse/minecraft/iron_horse_armor/index.html rename to static/browse/minecraft/iron_horse_armor/index.html diff --git a/src/data/minecraft/1.7.10/images/iron_ingot.png b/static/browse/minecraft/iron_ingot/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/iron_ingot.png rename to static/browse/minecraft/iron_ingot/icon.png diff --git a/prerender/browse/minecraft/iron_ingot/index.html b/static/browse/minecraft/iron_ingot/index.html similarity index 100% rename from prerender/browse/minecraft/iron_ingot/index.html rename to static/browse/minecraft/iron_ingot/index.html diff --git a/src/data/minecraft/1.7.10/images/iron_leggings.png b/static/browse/minecraft/iron_leggings/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/iron_leggings.png rename to static/browse/minecraft/iron_leggings/icon.png diff --git a/prerender/browse/minecraft/iron_leggings/index.html b/static/browse/minecraft/iron_leggings/index.html similarity index 100% rename from prerender/browse/minecraft/iron_leggings/index.html rename to static/browse/minecraft/iron_leggings/index.html diff --git a/src/data/minecraft/1.7.10/images/iron_ore.png b/static/browse/minecraft/iron_ore/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/iron_ore.png rename to static/browse/minecraft/iron_ore/icon.png diff --git a/prerender/browse/minecraft/iron_ore/index.html b/static/browse/minecraft/iron_ore/index.html similarity index 100% rename from prerender/browse/minecraft/iron_ore/index.html rename to static/browse/minecraft/iron_ore/index.html diff --git a/src/data/minecraft/1.7.10/images/iron_pickaxe.png b/static/browse/minecraft/iron_pickaxe/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/iron_pickaxe.png rename to static/browse/minecraft/iron_pickaxe/icon.png diff --git a/prerender/browse/minecraft/iron_pickaxe/index.html b/static/browse/minecraft/iron_pickaxe/index.html similarity index 100% rename from prerender/browse/minecraft/iron_pickaxe/index.html rename to static/browse/minecraft/iron_pickaxe/index.html diff --git a/src/data/minecraft/1.7.10/images/iron_shovel.png b/static/browse/minecraft/iron_shovel/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/iron_shovel.png rename to static/browse/minecraft/iron_shovel/icon.png diff --git a/prerender/browse/minecraft/iron_shovel/index.html b/static/browse/minecraft/iron_shovel/index.html similarity index 100% rename from prerender/browse/minecraft/iron_shovel/index.html rename to static/browse/minecraft/iron_shovel/index.html diff --git a/src/data/minecraft/1.7.10/images/iron_sword.png b/static/browse/minecraft/iron_sword/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/iron_sword.png rename to static/browse/minecraft/iron_sword/icon.png diff --git a/prerender/browse/minecraft/iron_sword/index.html b/static/browse/minecraft/iron_sword/index.html similarity index 100% rename from prerender/browse/minecraft/iron_sword/index.html rename to static/browse/minecraft/iron_sword/index.html diff --git a/src/data/minecraft/1.7.10/images/item_frame.png b/static/browse/minecraft/item_frame/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/item_frame.png rename to static/browse/minecraft/item_frame/icon.png diff --git a/prerender/browse/minecraft/item_frame/index.html b/static/browse/minecraft/item_frame/index.html similarity index 100% rename from prerender/browse/minecraft/item_frame/index.html rename to static/browse/minecraft/item_frame/index.html diff --git a/src/data/minecraft/1.7.10/images/jack_o_lantern.png b/static/browse/minecraft/jack_o_lantern/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/jack_o_lantern.png rename to static/browse/minecraft/jack_o_lantern/icon.png diff --git a/prerender/browse/minecraft/jack_o_lantern/index.html b/static/browse/minecraft/jack_o_lantern/index.html similarity index 100% rename from prerender/browse/minecraft/jack_o_lantern/index.html rename to static/browse/minecraft/jack_o_lantern/index.html diff --git a/src/data/minecraft/1.7.10/images/jukebox.png b/static/browse/minecraft/jukebox/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/jukebox.png rename to static/browse/minecraft/jukebox/icon.png diff --git a/prerender/browse/minecraft/jukebox/index.html b/static/browse/minecraft/jukebox/index.html similarity index 100% rename from prerender/browse/minecraft/jukebox/index.html rename to static/browse/minecraft/jukebox/index.html diff --git a/src/data/minecraft/1.7.10/images/jungle_leaves.png b/static/browse/minecraft/jungle_leaves/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/jungle_leaves.png rename to static/browse/minecraft/jungle_leaves/icon.png diff --git a/prerender/browse/minecraft/jungle_leaves/index.html b/static/browse/minecraft/jungle_leaves/index.html similarity index 100% rename from prerender/browse/minecraft/jungle_leaves/index.html rename to static/browse/minecraft/jungle_leaves/index.html diff --git a/src/data/minecraft/1.7.10/images/jungle_sapling.png b/static/browse/minecraft/jungle_sapling/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/jungle_sapling.png rename to static/browse/minecraft/jungle_sapling/icon.png diff --git a/prerender/browse/minecraft/jungle_sapling/index.html b/static/browse/minecraft/jungle_sapling/index.html similarity index 100% rename from prerender/browse/minecraft/jungle_sapling/index.html rename to static/browse/minecraft/jungle_sapling/index.html diff --git a/src/data/minecraft/1.7.10/images/jungle_wood.png b/static/browse/minecraft/jungle_wood/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/jungle_wood.png rename to static/browse/minecraft/jungle_wood/icon.png diff --git a/prerender/browse/minecraft/jungle_wood/index.html b/static/browse/minecraft/jungle_wood/index.html similarity index 100% rename from prerender/browse/minecraft/jungle_wood/index.html rename to static/browse/minecraft/jungle_wood/index.html diff --git a/src/data/minecraft/1.7.10/images/jungle_wood_planks.png b/static/browse/minecraft/jungle_wood_planks/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/jungle_wood_planks.png rename to static/browse/minecraft/jungle_wood_planks/icon.png diff --git a/prerender/browse/minecraft/jungle_wood_planks/index.html b/static/browse/minecraft/jungle_wood_planks/index.html similarity index 100% rename from prerender/browse/minecraft/jungle_wood_planks/index.html rename to static/browse/minecraft/jungle_wood_planks/index.html diff --git a/src/data/minecraft/1.7.10/images/jungle_wood_slab.png b/static/browse/minecraft/jungle_wood_slab/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/jungle_wood_slab.png rename to static/browse/minecraft/jungle_wood_slab/icon.png diff --git a/prerender/browse/minecraft/jungle_wood_slab/index.html b/static/browse/minecraft/jungle_wood_slab/index.html similarity index 100% rename from prerender/browse/minecraft/jungle_wood_slab/index.html rename to static/browse/minecraft/jungle_wood_slab/index.html diff --git a/src/data/minecraft/1.7.10/images/jungle_wood_stairs.png b/static/browse/minecraft/jungle_wood_stairs/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/jungle_wood_stairs.png rename to static/browse/minecraft/jungle_wood_stairs/icon.png diff --git a/prerender/browse/minecraft/jungle_wood_stairs/index.html b/static/browse/minecraft/jungle_wood_stairs/index.html similarity index 100% rename from prerender/browse/minecraft/jungle_wood_stairs/index.html rename to static/browse/minecraft/jungle_wood_stairs/index.html diff --git a/src/data/minecraft/1.7.10/images/ladder.png b/static/browse/minecraft/ladder/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/ladder.png rename to static/browse/minecraft/ladder/icon.png diff --git a/prerender/browse/minecraft/ladder/index.html b/static/browse/minecraft/ladder/index.html similarity index 100% rename from prerender/browse/minecraft/ladder/index.html rename to static/browse/minecraft/ladder/index.html diff --git a/src/data/minecraft/1.7.10/images/lapis_lazuli.png b/static/browse/minecraft/lapis_lazuli/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/lapis_lazuli.png rename to static/browse/minecraft/lapis_lazuli/icon.png diff --git a/prerender/browse/minecraft/lapis_lazuli/index.html b/static/browse/minecraft/lapis_lazuli/index.html similarity index 100% rename from prerender/browse/minecraft/lapis_lazuli/index.html rename to static/browse/minecraft/lapis_lazuli/index.html diff --git a/src/data/minecraft/1.7.10/images/lapis_lazuli_block.png b/static/browse/minecraft/lapis_lazuli_block/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/lapis_lazuli_block.png rename to static/browse/minecraft/lapis_lazuli_block/icon.png diff --git a/prerender/browse/minecraft/lapis_lazuli_block/index.html b/static/browse/minecraft/lapis_lazuli_block/index.html similarity index 100% rename from prerender/browse/minecraft/lapis_lazuli_block/index.html rename to static/browse/minecraft/lapis_lazuli_block/index.html diff --git a/src/data/minecraft/1.7.10/images/lapis_lazuli_ore.png b/static/browse/minecraft/lapis_lazuli_ore/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/lapis_lazuli_ore.png rename to static/browse/minecraft/lapis_lazuli_ore/icon.png diff --git a/prerender/browse/minecraft/lapis_lazuli_ore/index.html b/static/browse/minecraft/lapis_lazuli_ore/index.html similarity index 100% rename from prerender/browse/minecraft/lapis_lazuli_ore/index.html rename to static/browse/minecraft/lapis_lazuli_ore/index.html diff --git a/src/data/minecraft/1.7.10/images/large_fern.png b/static/browse/minecraft/large_fern/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/large_fern.png rename to static/browse/minecraft/large_fern/icon.png diff --git a/prerender/browse/minecraft/large_fern/index.html b/static/browse/minecraft/large_fern/index.html similarity index 100% rename from prerender/browse/minecraft/large_fern/index.html rename to static/browse/minecraft/large_fern/index.html diff --git a/src/data/minecraft/1.7.10/images/lava.png b/static/browse/minecraft/lava/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/lava.png rename to static/browse/minecraft/lava/icon.png diff --git a/prerender/browse/minecraft/lava/index.html b/static/browse/minecraft/lava/index.html similarity index 100% rename from prerender/browse/minecraft/lava/index.html rename to static/browse/minecraft/lava/index.html diff --git a/src/data/minecraft/1.7.10/images/lava_bucket.png b/static/browse/minecraft/lava_bucket/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/lava_bucket.png rename to static/browse/minecraft/lava_bucket/icon.png diff --git a/prerender/browse/minecraft/lava_bucket/index.html b/static/browse/minecraft/lava_bucket/index.html similarity index 100% rename from prerender/browse/minecraft/lava_bucket/index.html rename to static/browse/minecraft/lava_bucket/index.html diff --git a/src/data/minecraft/1.7.10/images/lead.png b/static/browse/minecraft/lead/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/lead.png rename to static/browse/minecraft/lead/icon.png diff --git a/prerender/browse/minecraft/lead/index.html b/static/browse/minecraft/lead/index.html similarity index 100% rename from prerender/browse/minecraft/lead/index.html rename to static/browse/minecraft/lead/index.html diff --git a/src/data/minecraft/1.7.10/images/leather.png b/static/browse/minecraft/leather/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/leather.png rename to static/browse/minecraft/leather/icon.png diff --git a/prerender/browse/minecraft/leather/index.html b/static/browse/minecraft/leather/index.html similarity index 100% rename from prerender/browse/minecraft/leather/index.html rename to static/browse/minecraft/leather/index.html diff --git a/src/data/minecraft/1.7.10/images/leather_boots.png b/static/browse/minecraft/leather_boots/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/leather_boots.png rename to static/browse/minecraft/leather_boots/icon.png diff --git a/prerender/browse/minecraft/leather_boots/index.html b/static/browse/minecraft/leather_boots/index.html similarity index 100% rename from prerender/browse/minecraft/leather_boots/index.html rename to static/browse/minecraft/leather_boots/index.html diff --git a/src/data/minecraft/1.7.10/images/leather_cap.png b/static/browse/minecraft/leather_cap/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/leather_cap.png rename to static/browse/minecraft/leather_cap/icon.png diff --git a/prerender/browse/minecraft/leather_cap/index.html b/static/browse/minecraft/leather_cap/index.html similarity index 100% rename from prerender/browse/minecraft/leather_cap/index.html rename to static/browse/minecraft/leather_cap/index.html diff --git a/src/data/minecraft/1.7.10/images/leather_pants.png b/static/browse/minecraft/leather_pants/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/leather_pants.png rename to static/browse/minecraft/leather_pants/icon.png diff --git a/prerender/browse/minecraft/leather_pants/index.html b/static/browse/minecraft/leather_pants/index.html similarity index 100% rename from prerender/browse/minecraft/leather_pants/index.html rename to static/browse/minecraft/leather_pants/index.html diff --git a/src/data/minecraft/1.7.10/images/leather_tunic.png b/static/browse/minecraft/leather_tunic/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/leather_tunic.png rename to static/browse/minecraft/leather_tunic/icon.png diff --git a/prerender/browse/minecraft/leather_tunic/index.html b/static/browse/minecraft/leather_tunic/index.html similarity index 100% rename from prerender/browse/minecraft/leather_tunic/index.html rename to static/browse/minecraft/leather_tunic/index.html diff --git a/src/data/minecraft/1.7.10/images/lever.png b/static/browse/minecraft/lever/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/lever.png rename to static/browse/minecraft/lever/icon.png diff --git a/prerender/browse/minecraft/lever/index.html b/static/browse/minecraft/lever/index.html similarity index 100% rename from prerender/browse/minecraft/lever/index.html rename to static/browse/minecraft/lever/index.html diff --git a/src/data/minecraft/1.7.10/images/light_blue_carpet.png b/static/browse/minecraft/light_blue_carpet/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/light_blue_carpet.png rename to static/browse/minecraft/light_blue_carpet/icon.png diff --git a/prerender/browse/minecraft/light_blue_carpet/index.html b/static/browse/minecraft/light_blue_carpet/index.html similarity index 100% rename from prerender/browse/minecraft/light_blue_carpet/index.html rename to static/browse/minecraft/light_blue_carpet/index.html diff --git a/src/data/minecraft/1.7.10/images/light_blue_dye.png b/static/browse/minecraft/light_blue_dye/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/light_blue_dye.png rename to static/browse/minecraft/light_blue_dye/icon.png diff --git a/prerender/browse/minecraft/light_blue_dye/index.html b/static/browse/minecraft/light_blue_dye/index.html similarity index 100% rename from prerender/browse/minecraft/light_blue_dye/index.html rename to static/browse/minecraft/light_blue_dye/index.html diff --git a/src/data/minecraft/1.7.10/images/light_blue_stained_clay.png b/static/browse/minecraft/light_blue_stained_clay/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/light_blue_stained_clay.png rename to static/browse/minecraft/light_blue_stained_clay/icon.png diff --git a/prerender/browse/minecraft/light_blue_stained_clay/index.html b/static/browse/minecraft/light_blue_stained_clay/index.html similarity index 100% rename from prerender/browse/minecraft/light_blue_stained_clay/index.html rename to static/browse/minecraft/light_blue_stained_clay/index.html diff --git a/src/data/minecraft/1.7.10/images/light_blue_stained_glass.png b/static/browse/minecraft/light_blue_stained_glass/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/light_blue_stained_glass.png rename to static/browse/minecraft/light_blue_stained_glass/icon.png diff --git a/prerender/browse/minecraft/light_blue_stained_glass/index.html b/static/browse/minecraft/light_blue_stained_glass/index.html similarity index 100% rename from prerender/browse/minecraft/light_blue_stained_glass/index.html rename to static/browse/minecraft/light_blue_stained_glass/index.html diff --git a/src/data/minecraft/1.7.10/images/light_blue_stained_glass_pane.png b/static/browse/minecraft/light_blue_stained_glass_pane/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/light_blue_stained_glass_pane.png rename to static/browse/minecraft/light_blue_stained_glass_pane/icon.png diff --git a/prerender/browse/minecraft/light_blue_stained_glass_pane/index.html b/static/browse/minecraft/light_blue_stained_glass_pane/index.html similarity index 100% rename from prerender/browse/minecraft/light_blue_stained_glass_pane/index.html rename to static/browse/minecraft/light_blue_stained_glass_pane/index.html diff --git a/src/data/minecraft/1.7.10/images/light_blue_wool.png b/static/browse/minecraft/light_blue_wool/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/light_blue_wool.png rename to static/browse/minecraft/light_blue_wool/icon.png diff --git a/prerender/browse/minecraft/light_blue_wool/index.html b/static/browse/minecraft/light_blue_wool/index.html similarity index 100% rename from prerender/browse/minecraft/light_blue_wool/index.html rename to static/browse/minecraft/light_blue_wool/index.html diff --git a/src/data/minecraft/1.7.10/images/light_gray_carpet.png b/static/browse/minecraft/light_gray_carpet/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/light_gray_carpet.png rename to static/browse/minecraft/light_gray_carpet/icon.png diff --git a/prerender/browse/minecraft/light_gray_carpet/index.html b/static/browse/minecraft/light_gray_carpet/index.html similarity index 100% rename from prerender/browse/minecraft/light_gray_carpet/index.html rename to static/browse/minecraft/light_gray_carpet/index.html diff --git a/src/data/minecraft/1.7.10/images/light_gray_dye.png b/static/browse/minecraft/light_gray_dye/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/light_gray_dye.png rename to static/browse/minecraft/light_gray_dye/icon.png diff --git a/prerender/browse/minecraft/light_gray_dye/index.html b/static/browse/minecraft/light_gray_dye/index.html similarity index 100% rename from prerender/browse/minecraft/light_gray_dye/index.html rename to static/browse/minecraft/light_gray_dye/index.html diff --git a/src/data/minecraft/1.7.10/images/light_gray_stained_clay.png b/static/browse/minecraft/light_gray_stained_clay/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/light_gray_stained_clay.png rename to static/browse/minecraft/light_gray_stained_clay/icon.png diff --git a/prerender/browse/minecraft/light_gray_stained_clay/index.html b/static/browse/minecraft/light_gray_stained_clay/index.html similarity index 100% rename from prerender/browse/minecraft/light_gray_stained_clay/index.html rename to static/browse/minecraft/light_gray_stained_clay/index.html diff --git a/src/data/minecraft/1.7.10/images/light_gray_stained_glass.png b/static/browse/minecraft/light_gray_stained_glass/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/light_gray_stained_glass.png rename to static/browse/minecraft/light_gray_stained_glass/icon.png diff --git a/prerender/browse/minecraft/light_gray_stained_glass/index.html b/static/browse/minecraft/light_gray_stained_glass/index.html similarity index 100% rename from prerender/browse/minecraft/light_gray_stained_glass/index.html rename to static/browse/minecraft/light_gray_stained_glass/index.html diff --git a/src/data/minecraft/1.7.10/images/light_gray_stained_glass_pane.png b/static/browse/minecraft/light_gray_stained_glass_pane/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/light_gray_stained_glass_pane.png rename to static/browse/minecraft/light_gray_stained_glass_pane/icon.png diff --git a/prerender/browse/minecraft/light_gray_stained_glass_pane/index.html b/static/browse/minecraft/light_gray_stained_glass_pane/index.html similarity index 100% rename from prerender/browse/minecraft/light_gray_stained_glass_pane/index.html rename to static/browse/minecraft/light_gray_stained_glass_pane/index.html diff --git a/src/data/minecraft/1.7.10/images/light_gray_wool.png b/static/browse/minecraft/light_gray_wool/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/light_gray_wool.png rename to static/browse/minecraft/light_gray_wool/icon.png diff --git a/prerender/browse/minecraft/light_gray_wool/index.html b/static/browse/minecraft/light_gray_wool/index.html similarity index 100% rename from prerender/browse/minecraft/light_gray_wool/index.html rename to static/browse/minecraft/light_gray_wool/index.html diff --git a/src/data/minecraft/1.7.10/images/lilac.png b/static/browse/minecraft/lilac/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/lilac.png rename to static/browse/minecraft/lilac/icon.png diff --git a/prerender/browse/minecraft/lilac/index.html b/static/browse/minecraft/lilac/index.html similarity index 100% rename from prerender/browse/minecraft/lilac/index.html rename to static/browse/minecraft/lilac/index.html diff --git a/src/data/minecraft/1.7.10/images/lily_pad.png b/static/browse/minecraft/lily_pad/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/lily_pad.png rename to static/browse/minecraft/lily_pad/icon.png diff --git a/prerender/browse/minecraft/lily_pad/index.html b/static/browse/minecraft/lily_pad/index.html similarity index 100% rename from prerender/browse/minecraft/lily_pad/index.html rename to static/browse/minecraft/lily_pad/index.html diff --git a/src/data/minecraft/1.7.10/images/lime_carpet.png b/static/browse/minecraft/lime_carpet/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/lime_carpet.png rename to static/browse/minecraft/lime_carpet/icon.png diff --git a/prerender/browse/minecraft/lime_carpet/index.html b/static/browse/minecraft/lime_carpet/index.html similarity index 100% rename from prerender/browse/minecraft/lime_carpet/index.html rename to static/browse/minecraft/lime_carpet/index.html diff --git a/src/data/minecraft/1.7.10/images/lime_dye.png b/static/browse/minecraft/lime_dye/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/lime_dye.png rename to static/browse/minecraft/lime_dye/icon.png diff --git a/prerender/browse/minecraft/lime_dye/index.html b/static/browse/minecraft/lime_dye/index.html similarity index 100% rename from prerender/browse/minecraft/lime_dye/index.html rename to static/browse/minecraft/lime_dye/index.html diff --git a/src/data/minecraft/1.7.10/images/lime_stained_clay.png b/static/browse/minecraft/lime_stained_clay/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/lime_stained_clay.png rename to static/browse/minecraft/lime_stained_clay/icon.png diff --git a/prerender/browse/minecraft/lime_stained_clay/index.html b/static/browse/minecraft/lime_stained_clay/index.html similarity index 100% rename from prerender/browse/minecraft/lime_stained_clay/index.html rename to static/browse/minecraft/lime_stained_clay/index.html diff --git a/src/data/minecraft/1.7.10/images/lime_stained_glass.png b/static/browse/minecraft/lime_stained_glass/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/lime_stained_glass.png rename to static/browse/minecraft/lime_stained_glass/icon.png diff --git a/prerender/browse/minecraft/lime_stained_glass/index.html b/static/browse/minecraft/lime_stained_glass/index.html similarity index 100% rename from prerender/browse/minecraft/lime_stained_glass/index.html rename to static/browse/minecraft/lime_stained_glass/index.html diff --git a/src/data/minecraft/1.7.10/images/lime_stained_glass_pane.png b/static/browse/minecraft/lime_stained_glass_pane/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/lime_stained_glass_pane.png rename to static/browse/minecraft/lime_stained_glass_pane/icon.png diff --git a/prerender/browse/minecraft/lime_stained_glass_pane/index.html b/static/browse/minecraft/lime_stained_glass_pane/index.html similarity index 100% rename from prerender/browse/minecraft/lime_stained_glass_pane/index.html rename to static/browse/minecraft/lime_stained_glass_pane/index.html diff --git a/src/data/minecraft/1.7.10/images/lime_wool.png b/static/browse/minecraft/lime_wool/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/lime_wool.png rename to static/browse/minecraft/lime_wool/icon.png diff --git a/prerender/browse/minecraft/lime_wool/index.html b/static/browse/minecraft/lime_wool/index.html similarity index 100% rename from prerender/browse/minecraft/lime_wool/index.html rename to static/browse/minecraft/lime_wool/index.html diff --git a/src/data/minecraft/1.7.10/images/magenta_carpet.png b/static/browse/minecraft/magenta_carpet/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/magenta_carpet.png rename to static/browse/minecraft/magenta_carpet/icon.png diff --git a/prerender/browse/minecraft/magenta_carpet/index.html b/static/browse/minecraft/magenta_carpet/index.html similarity index 100% rename from prerender/browse/minecraft/magenta_carpet/index.html rename to static/browse/minecraft/magenta_carpet/index.html diff --git a/src/data/minecraft/1.7.10/images/magenta_dye.png b/static/browse/minecraft/magenta_dye/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/magenta_dye.png rename to static/browse/minecraft/magenta_dye/icon.png diff --git a/prerender/browse/minecraft/magenta_dye/index.html b/static/browse/minecraft/magenta_dye/index.html similarity index 100% rename from prerender/browse/minecraft/magenta_dye/index.html rename to static/browse/minecraft/magenta_dye/index.html diff --git a/src/data/minecraft/1.7.10/images/magenta_stained_clay.png b/static/browse/minecraft/magenta_stained_clay/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/magenta_stained_clay.png rename to static/browse/minecraft/magenta_stained_clay/icon.png diff --git a/prerender/browse/minecraft/magenta_stained_clay/index.html b/static/browse/minecraft/magenta_stained_clay/index.html similarity index 100% rename from prerender/browse/minecraft/magenta_stained_clay/index.html rename to static/browse/minecraft/magenta_stained_clay/index.html diff --git a/src/data/minecraft/1.7.10/images/magenta_stained_glass.png b/static/browse/minecraft/magenta_stained_glass/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/magenta_stained_glass.png rename to static/browse/minecraft/magenta_stained_glass/icon.png diff --git a/prerender/browse/minecraft/magenta_stained_glass/index.html b/static/browse/minecraft/magenta_stained_glass/index.html similarity index 100% rename from prerender/browse/minecraft/magenta_stained_glass/index.html rename to static/browse/minecraft/magenta_stained_glass/index.html diff --git a/src/data/minecraft/1.7.10/images/magenta_stained_glass_pane.png b/static/browse/minecraft/magenta_stained_glass_pane/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/magenta_stained_glass_pane.png rename to static/browse/minecraft/magenta_stained_glass_pane/icon.png diff --git a/prerender/browse/minecraft/magenta_stained_glass_pane/index.html b/static/browse/minecraft/magenta_stained_glass_pane/index.html similarity index 100% rename from prerender/browse/minecraft/magenta_stained_glass_pane/index.html rename to static/browse/minecraft/magenta_stained_glass_pane/index.html diff --git a/src/data/minecraft/1.7.10/images/magenta_wool.png b/static/browse/minecraft/magenta_wool/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/magenta_wool.png rename to static/browse/minecraft/magenta_wool/icon.png diff --git a/prerender/browse/minecraft/magenta_wool/index.html b/static/browse/minecraft/magenta_wool/index.html similarity index 100% rename from prerender/browse/minecraft/magenta_wool/index.html rename to static/browse/minecraft/magenta_wool/index.html diff --git a/src/data/minecraft/1.7.10/images/magma_cream.png b/static/browse/minecraft/magma_cream/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/magma_cream.png rename to static/browse/minecraft/magma_cream/icon.png diff --git a/prerender/browse/minecraft/magma_cream/index.html b/static/browse/minecraft/magma_cream/index.html similarity index 100% rename from prerender/browse/minecraft/magma_cream/index.html rename to static/browse/minecraft/magma_cream/index.html diff --git a/src/data/minecraft/1.7.10/images/map_0.png b/static/browse/minecraft/map_0/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/map_0.png rename to static/browse/minecraft/map_0/icon.png diff --git a/src/data/minecraft/1.7.10/images/melon.png b/static/browse/minecraft/melon/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/melon.png rename to static/browse/minecraft/melon/icon.png diff --git a/prerender/browse/minecraft/melon/index.html b/static/browse/minecraft/melon/index.html similarity index 100% rename from prerender/browse/minecraft/melon/index.html rename to static/browse/minecraft/melon/index.html diff --git a/src/data/minecraft/1.7.10/images/melon_block.png b/static/browse/minecraft/melon_block/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/melon_block.png rename to static/browse/minecraft/melon_block/icon.png diff --git a/prerender/browse/minecraft/melon_block/index.html b/static/browse/minecraft/melon_block/index.html similarity index 100% rename from prerender/browse/minecraft/melon_block/index.html rename to static/browse/minecraft/melon_block/index.html diff --git a/src/data/minecraft/1.7.10/images/melon_seeds.png b/static/browse/minecraft/melon_seeds/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/melon_seeds.png rename to static/browse/minecraft/melon_seeds/icon.png diff --git a/prerender/browse/minecraft/melon_seeds/index.html b/static/browse/minecraft/melon_seeds/index.html similarity index 100% rename from prerender/browse/minecraft/melon_seeds/index.html rename to static/browse/minecraft/melon_seeds/index.html diff --git a/src/data/minecraft/1.7.10/images/milk.png b/static/browse/minecraft/milk/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/milk.png rename to static/browse/minecraft/milk/icon.png diff --git a/prerender/browse/minecraft/milk/index.html b/static/browse/minecraft/milk/index.html similarity index 100% rename from prerender/browse/minecraft/milk/index.html rename to static/browse/minecraft/milk/index.html diff --git a/src/data/minecraft/1.7.10/images/minecart.png b/static/browse/minecraft/minecart/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/minecart.png rename to static/browse/minecraft/minecart/icon.png diff --git a/prerender/browse/minecraft/minecart/index.html b/static/browse/minecraft/minecart/index.html similarity index 100% rename from prerender/browse/minecraft/minecart/index.html rename to static/browse/minecraft/minecart/index.html diff --git a/src/data/minecraft/1.7.10/images/minecart_with_chest.png b/static/browse/minecraft/minecart_with_chest/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/minecart_with_chest.png rename to static/browse/minecraft/minecart_with_chest/icon.png diff --git a/prerender/browse/minecraft/minecart_with_chest/index.html b/static/browse/minecraft/minecart_with_chest/index.html similarity index 100% rename from prerender/browse/minecraft/minecart_with_chest/index.html rename to static/browse/minecraft/minecart_with_chest/index.html diff --git a/src/data/minecraft/1.7.10/images/minecart_with_command_block.png b/static/browse/minecraft/minecart_with_command_block/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/minecart_with_command_block.png rename to static/browse/minecraft/minecart_with_command_block/icon.png diff --git a/prerender/browse/minecraft/minecart_with_command_block/index.html b/static/browse/minecraft/minecart_with_command_block/index.html similarity index 100% rename from prerender/browse/minecraft/minecart_with_command_block/index.html rename to static/browse/minecraft/minecart_with_command_block/index.html diff --git a/src/data/minecraft/1.7.10/images/minecart_with_furnace.png b/static/browse/minecraft/minecart_with_furnace/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/minecart_with_furnace.png rename to static/browse/minecraft/minecart_with_furnace/icon.png diff --git a/prerender/browse/minecraft/minecart_with_furnace/index.html b/static/browse/minecraft/minecart_with_furnace/index.html similarity index 100% rename from prerender/browse/minecraft/minecart_with_furnace/index.html rename to static/browse/minecraft/minecart_with_furnace/index.html diff --git a/src/data/minecraft/1.7.10/images/minecart_with_hopper.png b/static/browse/minecraft/minecart_with_hopper/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/minecart_with_hopper.png rename to static/browse/minecraft/minecart_with_hopper/icon.png diff --git a/prerender/browse/minecraft/minecart_with_hopper/index.html b/static/browse/minecraft/minecart_with_hopper/index.html similarity index 100% rename from prerender/browse/minecraft/minecart_with_hopper/index.html rename to static/browse/minecraft/minecart_with_hopper/index.html diff --git a/src/data/minecraft/1.7.10/images/minecart_with_tnt.png b/static/browse/minecraft/minecart_with_tnt/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/minecart_with_tnt.png rename to static/browse/minecraft/minecart_with_tnt/icon.png diff --git a/prerender/browse/minecraft/minecart_with_tnt/index.html b/static/browse/minecraft/minecart_with_tnt/index.html similarity index 100% rename from prerender/browse/minecraft/minecart_with_tnt/index.html rename to static/browse/minecraft/minecart_with_tnt/index.html diff --git a/src/data/minecraft/1.7.10/images/monster_spawner.png b/static/browse/minecraft/monster_spawner/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/monster_spawner.png rename to static/browse/minecraft/monster_spawner/icon.png diff --git a/prerender/browse/minecraft/monster_spawner/index.html b/static/browse/minecraft/monster_spawner/index.html similarity index 100% rename from prerender/browse/minecraft/monster_spawner/index.html rename to static/browse/minecraft/monster_spawner/index.html diff --git a/src/data/minecraft/1.7.10/images/moss_stone.png b/static/browse/minecraft/moss_stone/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/moss_stone.png rename to static/browse/minecraft/moss_stone/icon.png diff --git a/prerender/browse/minecraft/moss_stone/index.html b/static/browse/minecraft/moss_stone/index.html similarity index 100% rename from prerender/browse/minecraft/moss_stone/index.html rename to static/browse/minecraft/moss_stone/index.html diff --git a/src/data/minecraft/1.7.10/images/mossy_cobblestone_wall.png b/static/browse/minecraft/mossy_cobblestone_wall/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/mossy_cobblestone_wall.png rename to static/browse/minecraft/mossy_cobblestone_wall/icon.png diff --git a/prerender/browse/minecraft/mossy_cobblestone_wall/index.html b/static/browse/minecraft/mossy_cobblestone_wall/index.html similarity index 100% rename from prerender/browse/minecraft/mossy_cobblestone_wall/index.html rename to static/browse/minecraft/mossy_cobblestone_wall/index.html diff --git a/src/data/minecraft/1.7.10/images/mossy_stone_brick_monster_egg.png b/static/browse/minecraft/mossy_stone_brick_monster_egg/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/mossy_stone_brick_monster_egg.png rename to static/browse/minecraft/mossy_stone_brick_monster_egg/icon.png diff --git a/src/data/minecraft/1.7.10/images/mossy_stone_bricks.png b/static/browse/minecraft/mossy_stone_bricks/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/mossy_stone_bricks.png rename to static/browse/minecraft/mossy_stone_bricks/icon.png diff --git a/prerender/browse/minecraft/mossy_stone_bricks/index.html b/static/browse/minecraft/mossy_stone_bricks/index.html similarity index 100% rename from prerender/browse/minecraft/mossy_stone_bricks/index.html rename to static/browse/minecraft/mossy_stone_bricks/index.html diff --git a/src/data/minecraft/1.7.10/images/mundane_potion.png b/static/browse/minecraft/mundane_potion/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/mundane_potion.png rename to static/browse/minecraft/mundane_potion/icon.png diff --git a/prerender/browse/minecraft/mundane_potion/index.html b/static/browse/minecraft/mundane_potion/index.html similarity index 100% rename from prerender/browse/minecraft/mundane_potion/index.html rename to static/browse/minecraft/mundane_potion/index.html diff --git a/src/data/minecraft/1.7.10/images/mundane_splash_potion.png b/static/browse/minecraft/mundane_splash_potion/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/mundane_splash_potion.png rename to static/browse/minecraft/mundane_splash_potion/icon.png diff --git a/prerender/browse/minecraft/mundane_splash_potion/index.html b/static/browse/minecraft/mundane_splash_potion/index.html similarity index 100% rename from prerender/browse/minecraft/mundane_splash_potion/index.html rename to static/browse/minecraft/mundane_splash_potion/index.html diff --git a/src/data/minecraft/1.7.10/images/mushroom.png b/static/browse/minecraft/mushroom/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/mushroom.png rename to static/browse/minecraft/mushroom/icon.png diff --git a/src/data/minecraft/1.7.10/images/mushroom_brown.png b/static/browse/minecraft/mushroom_brown/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/mushroom_brown.png rename to static/browse/minecraft/mushroom_brown/icon.png diff --git a/src/data/minecraft/1.7.10/images/mushroom_red.png b/static/browse/minecraft/mushroom_red/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/mushroom_red.png rename to static/browse/minecraft/mushroom_red/icon.png diff --git a/src/data/minecraft/1.7.10/images/mushroom_stew.png b/static/browse/minecraft/mushroom_stew/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/mushroom_stew.png rename to static/browse/minecraft/mushroom_stew/icon.png diff --git a/prerender/browse/minecraft/mushroom_stew/index.html b/static/browse/minecraft/mushroom_stew/index.html similarity index 100% rename from prerender/browse/minecraft/mushroom_stew/index.html rename to static/browse/minecraft/mushroom_stew/index.html diff --git a/src/data/minecraft/1.7.10/images/music_disc.png b/static/browse/minecraft/music_disc/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/music_disc.png rename to static/browse/minecraft/music_disc/icon.png diff --git a/prerender/browse/minecraft/music_disc/index.html b/static/browse/minecraft/music_disc/index.html similarity index 100% rename from prerender/browse/minecraft/music_disc/index.html rename to static/browse/minecraft/music_disc/index.html diff --git a/src/data/minecraft/1.7.10/images/mycelium.png b/static/browse/minecraft/mycelium/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/mycelium.png rename to static/browse/minecraft/mycelium/icon.png diff --git a/prerender/browse/minecraft/mycelium/index.html b/static/browse/minecraft/mycelium/index.html similarity index 100% rename from prerender/browse/minecraft/mycelium/index.html rename to static/browse/minecraft/mycelium/index.html diff --git a/src/data/minecraft/1.7.10/images/name_tag.png b/static/browse/minecraft/name_tag/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/name_tag.png rename to static/browse/minecraft/name_tag/icon.png diff --git a/prerender/browse/minecraft/name_tag/index.html b/static/browse/minecraft/name_tag/index.html similarity index 100% rename from prerender/browse/minecraft/name_tag/index.html rename to static/browse/minecraft/name_tag/index.html diff --git a/src/data/minecraft/1.7.10/images/nether_brick.png b/static/browse/minecraft/nether_brick/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/nether_brick.png rename to static/browse/minecraft/nether_brick/icon.png diff --git a/prerender/browse/minecraft/nether_brick/index.html b/static/browse/minecraft/nether_brick/index.html similarity index 100% rename from prerender/browse/minecraft/nether_brick/index.html rename to static/browse/minecraft/nether_brick/index.html diff --git a/src/data/minecraft/1.7.10/images/nether_brick_block.png b/static/browse/minecraft/nether_brick_block/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/nether_brick_block.png rename to static/browse/minecraft/nether_brick_block/icon.png diff --git a/prerender/browse/minecraft/nether_brick_block/index.html b/static/browse/minecraft/nether_brick_block/index.html similarity index 100% rename from prerender/browse/minecraft/nether_brick_block/index.html rename to static/browse/minecraft/nether_brick_block/index.html diff --git a/src/data/minecraft/1.7.10/images/nether_brick_fence.png b/static/browse/minecraft/nether_brick_fence/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/nether_brick_fence.png rename to static/browse/minecraft/nether_brick_fence/icon.png diff --git a/prerender/browse/minecraft/nether_brick_fence/index.html b/static/browse/minecraft/nether_brick_fence/index.html similarity index 100% rename from prerender/browse/minecraft/nether_brick_fence/index.html rename to static/browse/minecraft/nether_brick_fence/index.html diff --git a/src/data/minecraft/1.7.10/images/nether_brick_slab.png b/static/browse/minecraft/nether_brick_slab/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/nether_brick_slab.png rename to static/browse/minecraft/nether_brick_slab/icon.png diff --git a/prerender/browse/minecraft/nether_brick_slab/index.html b/static/browse/minecraft/nether_brick_slab/index.html similarity index 100% rename from prerender/browse/minecraft/nether_brick_slab/index.html rename to static/browse/minecraft/nether_brick_slab/index.html diff --git a/src/data/minecraft/1.7.10/images/nether_brick_stairs.png b/static/browse/minecraft/nether_brick_stairs/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/nether_brick_stairs.png rename to static/browse/minecraft/nether_brick_stairs/icon.png diff --git a/prerender/browse/minecraft/nether_brick_stairs/index.html b/static/browse/minecraft/nether_brick_stairs/index.html similarity index 100% rename from prerender/browse/minecraft/nether_brick_stairs/index.html rename to static/browse/minecraft/nether_brick_stairs/index.html diff --git a/src/data/minecraft/1.7.10/images/nether_quartz.png b/static/browse/minecraft/nether_quartz/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/nether_quartz.png rename to static/browse/minecraft/nether_quartz/icon.png diff --git a/prerender/browse/minecraft/nether_quartz/index.html b/static/browse/minecraft/nether_quartz/index.html similarity index 100% rename from prerender/browse/minecraft/nether_quartz/index.html rename to static/browse/minecraft/nether_quartz/index.html diff --git a/src/data/minecraft/1.7.10/images/nether_quartz_ore.png b/static/browse/minecraft/nether_quartz_ore/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/nether_quartz_ore.png rename to static/browse/minecraft/nether_quartz_ore/icon.png diff --git a/prerender/browse/minecraft/nether_quartz_ore/index.html b/static/browse/minecraft/nether_quartz_ore/index.html similarity index 100% rename from prerender/browse/minecraft/nether_quartz_ore/index.html rename to static/browse/minecraft/nether_quartz_ore/index.html diff --git a/src/data/minecraft/1.7.10/images/nether_star.png b/static/browse/minecraft/nether_star/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/nether_star.png rename to static/browse/minecraft/nether_star/icon.png diff --git a/prerender/browse/minecraft/nether_star/index.html b/static/browse/minecraft/nether_star/index.html similarity index 100% rename from prerender/browse/minecraft/nether_star/index.html rename to static/browse/minecraft/nether_star/index.html diff --git a/src/data/minecraft/1.7.10/images/nether_wart.png b/static/browse/minecraft/nether_wart/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/nether_wart.png rename to static/browse/minecraft/nether_wart/icon.png diff --git a/prerender/browse/minecraft/nether_wart/index.html b/static/browse/minecraft/nether_wart/index.html similarity index 100% rename from prerender/browse/minecraft/nether_wart/index.html rename to static/browse/minecraft/nether_wart/index.html diff --git a/src/data/minecraft/1.7.10/images/netherrack.png b/static/browse/minecraft/netherrack/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/netherrack.png rename to static/browse/minecraft/netherrack/icon.png diff --git a/prerender/browse/minecraft/netherrack/index.html b/static/browse/minecraft/netherrack/index.html similarity index 100% rename from prerender/browse/minecraft/netherrack/index.html rename to static/browse/minecraft/netherrack/index.html diff --git a/src/data/minecraft/1.7.10/images/note_block.png b/static/browse/minecraft/note_block/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/note_block.png rename to static/browse/minecraft/note_block/icon.png diff --git a/prerender/browse/minecraft/note_block/index.html b/static/browse/minecraft/note_block/index.html similarity index 100% rename from prerender/browse/minecraft/note_block/index.html rename to static/browse/minecraft/note_block/index.html diff --git a/src/data/minecraft/1.7.10/images/oak_leaves.png b/static/browse/minecraft/oak_leaves/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/oak_leaves.png rename to static/browse/minecraft/oak_leaves/icon.png diff --git a/prerender/browse/minecraft/oak_leaves/index.html b/static/browse/minecraft/oak_leaves/index.html similarity index 100% rename from prerender/browse/minecraft/oak_leaves/index.html rename to static/browse/minecraft/oak_leaves/index.html diff --git a/src/data/minecraft/1.7.10/images/oak_sapling.png b/static/browse/minecraft/oak_sapling/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/oak_sapling.png rename to static/browse/minecraft/oak_sapling/icon.png diff --git a/prerender/browse/minecraft/oak_sapling/index.html b/static/browse/minecraft/oak_sapling/index.html similarity index 100% rename from prerender/browse/minecraft/oak_sapling/index.html rename to static/browse/minecraft/oak_sapling/index.html diff --git a/src/data/minecraft/1.7.10/images/oak_wood.png b/static/browse/minecraft/oak_wood/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/oak_wood.png rename to static/browse/minecraft/oak_wood/icon.png diff --git a/prerender/browse/minecraft/oak_wood/index.html b/static/browse/minecraft/oak_wood/index.html similarity index 100% rename from prerender/browse/minecraft/oak_wood/index.html rename to static/browse/minecraft/oak_wood/index.html diff --git a/src/data/minecraft/1.7.10/images/oak_wood_planks.png b/static/browse/minecraft/oak_wood_planks/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/oak_wood_planks.png rename to static/browse/minecraft/oak_wood_planks/icon.png diff --git a/prerender/browse/minecraft/oak_wood_planks/index.html b/static/browse/minecraft/oak_wood_planks/index.html similarity index 100% rename from prerender/browse/minecraft/oak_wood_planks/index.html rename to static/browse/minecraft/oak_wood_planks/index.html diff --git a/src/data/minecraft/1.7.10/images/oak_wood_slab.png b/static/browse/minecraft/oak_wood_slab/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/oak_wood_slab.png rename to static/browse/minecraft/oak_wood_slab/icon.png diff --git a/prerender/browse/minecraft/oak_wood_slab/index.html b/static/browse/minecraft/oak_wood_slab/index.html similarity index 100% rename from prerender/browse/minecraft/oak_wood_slab/index.html rename to static/browse/minecraft/oak_wood_slab/index.html diff --git a/src/data/minecraft/1.7.10/images/oak_wood_stairs.png b/static/browse/minecraft/oak_wood_stairs/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/oak_wood_stairs.png rename to static/browse/minecraft/oak_wood_stairs/icon.png diff --git a/prerender/browse/minecraft/oak_wood_stairs/index.html b/static/browse/minecraft/oak_wood_stairs/index.html similarity index 100% rename from prerender/browse/minecraft/oak_wood_stairs/index.html rename to static/browse/minecraft/oak_wood_stairs/index.html diff --git a/src/data/minecraft/1.7.10/images/obsidian.png b/static/browse/minecraft/obsidian/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/obsidian.png rename to static/browse/minecraft/obsidian/icon.png diff --git a/prerender/browse/minecraft/obsidian/index.html b/static/browse/minecraft/obsidian/index.html similarity index 100% rename from prerender/browse/minecraft/obsidian/index.html rename to static/browse/minecraft/obsidian/index.html diff --git a/src/data/minecraft/1.7.10/images/orange_carpet.png b/static/browse/minecraft/orange_carpet/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/orange_carpet.png rename to static/browse/minecraft/orange_carpet/icon.png diff --git a/prerender/browse/minecraft/orange_carpet/index.html b/static/browse/minecraft/orange_carpet/index.html similarity index 100% rename from prerender/browse/minecraft/orange_carpet/index.html rename to static/browse/minecraft/orange_carpet/index.html diff --git a/src/data/minecraft/1.7.10/images/orange_dye.png b/static/browse/minecraft/orange_dye/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/orange_dye.png rename to static/browse/minecraft/orange_dye/icon.png diff --git a/prerender/browse/minecraft/orange_dye/index.html b/static/browse/minecraft/orange_dye/index.html similarity index 100% rename from prerender/browse/minecraft/orange_dye/index.html rename to static/browse/minecraft/orange_dye/index.html diff --git a/src/data/minecraft/1.7.10/images/orange_stained_clay.png b/static/browse/minecraft/orange_stained_clay/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/orange_stained_clay.png rename to static/browse/minecraft/orange_stained_clay/icon.png diff --git a/prerender/browse/minecraft/orange_stained_clay/index.html b/static/browse/minecraft/orange_stained_clay/index.html similarity index 100% rename from prerender/browse/minecraft/orange_stained_clay/index.html rename to static/browse/minecraft/orange_stained_clay/index.html diff --git a/src/data/minecraft/1.7.10/images/orange_stained_glass.png b/static/browse/minecraft/orange_stained_glass/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/orange_stained_glass.png rename to static/browse/minecraft/orange_stained_glass/icon.png diff --git a/prerender/browse/minecraft/orange_stained_glass/index.html b/static/browse/minecraft/orange_stained_glass/index.html similarity index 100% rename from prerender/browse/minecraft/orange_stained_glass/index.html rename to static/browse/minecraft/orange_stained_glass/index.html diff --git a/src/data/minecraft/1.7.10/images/orange_stained_glass_pane.png b/static/browse/minecraft/orange_stained_glass_pane/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/orange_stained_glass_pane.png rename to static/browse/minecraft/orange_stained_glass_pane/icon.png diff --git a/prerender/browse/minecraft/orange_stained_glass_pane/index.html b/static/browse/minecraft/orange_stained_glass_pane/index.html similarity index 100% rename from prerender/browse/minecraft/orange_stained_glass_pane/index.html rename to static/browse/minecraft/orange_stained_glass_pane/index.html diff --git a/src/data/minecraft/1.7.10/images/orange_tulip.png b/static/browse/minecraft/orange_tulip/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/orange_tulip.png rename to static/browse/minecraft/orange_tulip/icon.png diff --git a/prerender/browse/minecraft/orange_tulip/index.html b/static/browse/minecraft/orange_tulip/index.html similarity index 100% rename from prerender/browse/minecraft/orange_tulip/index.html rename to static/browse/minecraft/orange_tulip/index.html diff --git a/src/data/minecraft/1.7.10/images/orange_wool.png b/static/browse/minecraft/orange_wool/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/orange_wool.png rename to static/browse/minecraft/orange_wool/icon.png diff --git a/prerender/browse/minecraft/orange_wool/index.html b/static/browse/minecraft/orange_wool/index.html similarity index 100% rename from prerender/browse/minecraft/orange_wool/index.html rename to static/browse/minecraft/orange_wool/index.html diff --git a/src/data/minecraft/1.7.10/images/oxeye_daisy.png b/static/browse/minecraft/oxeye_daisy/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/oxeye_daisy.png rename to static/browse/minecraft/oxeye_daisy/icon.png diff --git a/prerender/browse/minecraft/oxeye_daisy/index.html b/static/browse/minecraft/oxeye_daisy/index.html similarity index 100% rename from prerender/browse/minecraft/oxeye_daisy/index.html rename to static/browse/minecraft/oxeye_daisy/index.html diff --git a/src/data/minecraft/1.7.10/images/packed_ice.png b/static/browse/minecraft/packed_ice/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/packed_ice.png rename to static/browse/minecraft/packed_ice/icon.png diff --git a/prerender/browse/minecraft/packed_ice/index.html b/static/browse/minecraft/packed_ice/index.html similarity index 100% rename from prerender/browse/minecraft/packed_ice/index.html rename to static/browse/minecraft/packed_ice/index.html diff --git a/src/data/minecraft/1.7.10/images/painting.png b/static/browse/minecraft/painting/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/painting.png rename to static/browse/minecraft/painting/icon.png diff --git a/prerender/browse/minecraft/painting/index.html b/static/browse/minecraft/painting/index.html similarity index 100% rename from prerender/browse/minecraft/painting/index.html rename to static/browse/minecraft/painting/index.html diff --git a/src/data/minecraft/1.7.10/images/paper.png b/static/browse/minecraft/paper/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/paper.png rename to static/browse/minecraft/paper/icon.png diff --git a/prerender/browse/minecraft/paper/index.html b/static/browse/minecraft/paper/index.html similarity index 100% rename from prerender/browse/minecraft/paper/index.html rename to static/browse/minecraft/paper/index.html diff --git a/src/data/minecraft/1.7.10/images/peony.png b/static/browse/minecraft/peony/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/peony.png rename to static/browse/minecraft/peony/icon.png diff --git a/prerender/browse/minecraft/peony/index.html b/static/browse/minecraft/peony/index.html similarity index 100% rename from prerender/browse/minecraft/peony/index.html rename to static/browse/minecraft/peony/index.html diff --git a/src/data/minecraft/1.7.10/images/pillar_quartz_block.png b/static/browse/minecraft/pillar_quartz_block/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/pillar_quartz_block.png rename to static/browse/minecraft/pillar_quartz_block/icon.png diff --git a/prerender/browse/minecraft/pillar_quartz_block/index.html b/static/browse/minecraft/pillar_quartz_block/index.html similarity index 100% rename from prerender/browse/minecraft/pillar_quartz_block/index.html rename to static/browse/minecraft/pillar_quartz_block/index.html diff --git a/src/data/minecraft/1.7.10/images/pink_carpet.png b/static/browse/minecraft/pink_carpet/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/pink_carpet.png rename to static/browse/minecraft/pink_carpet/icon.png diff --git a/prerender/browse/minecraft/pink_carpet/index.html b/static/browse/minecraft/pink_carpet/index.html similarity index 100% rename from prerender/browse/minecraft/pink_carpet/index.html rename to static/browse/minecraft/pink_carpet/index.html diff --git a/src/data/minecraft/1.7.10/images/pink_dye.png b/static/browse/minecraft/pink_dye/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/pink_dye.png rename to static/browse/minecraft/pink_dye/icon.png diff --git a/prerender/browse/minecraft/pink_dye/index.html b/static/browse/minecraft/pink_dye/index.html similarity index 100% rename from prerender/browse/minecraft/pink_dye/index.html rename to static/browse/minecraft/pink_dye/index.html diff --git a/src/data/minecraft/1.7.10/images/pink_stained_clay.png b/static/browse/minecraft/pink_stained_clay/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/pink_stained_clay.png rename to static/browse/minecraft/pink_stained_clay/icon.png diff --git a/prerender/browse/minecraft/pink_stained_clay/index.html b/static/browse/minecraft/pink_stained_clay/index.html similarity index 100% rename from prerender/browse/minecraft/pink_stained_clay/index.html rename to static/browse/minecraft/pink_stained_clay/index.html diff --git a/src/data/minecraft/1.7.10/images/pink_stained_glass.png b/static/browse/minecraft/pink_stained_glass/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/pink_stained_glass.png rename to static/browse/minecraft/pink_stained_glass/icon.png diff --git a/prerender/browse/minecraft/pink_stained_glass/index.html b/static/browse/minecraft/pink_stained_glass/index.html similarity index 100% rename from prerender/browse/minecraft/pink_stained_glass/index.html rename to static/browse/minecraft/pink_stained_glass/index.html diff --git a/src/data/minecraft/1.7.10/images/pink_stained_glass_pane.png b/static/browse/minecraft/pink_stained_glass_pane/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/pink_stained_glass_pane.png rename to static/browse/minecraft/pink_stained_glass_pane/icon.png diff --git a/prerender/browse/minecraft/pink_stained_glass_pane/index.html b/static/browse/minecraft/pink_stained_glass_pane/index.html similarity index 100% rename from prerender/browse/minecraft/pink_stained_glass_pane/index.html rename to static/browse/minecraft/pink_stained_glass_pane/index.html diff --git a/src/data/minecraft/1.7.10/images/pink_tulip.png b/static/browse/minecraft/pink_tulip/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/pink_tulip.png rename to static/browse/minecraft/pink_tulip/icon.png diff --git a/prerender/browse/minecraft/pink_tulip/index.html b/static/browse/minecraft/pink_tulip/index.html similarity index 100% rename from prerender/browse/minecraft/pink_tulip/index.html rename to static/browse/minecraft/pink_tulip/index.html diff --git a/src/data/minecraft/1.7.10/images/pink_wool.png b/static/browse/minecraft/pink_wool/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/pink_wool.png rename to static/browse/minecraft/pink_wool/icon.png diff --git a/prerender/browse/minecraft/pink_wool/index.html b/static/browse/minecraft/pink_wool/index.html similarity index 100% rename from prerender/browse/minecraft/pink_wool/index.html rename to static/browse/minecraft/pink_wool/index.html diff --git a/src/data/minecraft/1.7.10/images/piston.png b/static/browse/minecraft/piston/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/piston.png rename to static/browse/minecraft/piston/icon.png diff --git a/prerender/browse/minecraft/piston/index.html b/static/browse/minecraft/piston/index.html similarity index 100% rename from prerender/browse/minecraft/piston/index.html rename to static/browse/minecraft/piston/index.html diff --git a/src/data/minecraft/1.7.10/images/podzol.png b/static/browse/minecraft/podzol/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/podzol.png rename to static/browse/minecraft/podzol/icon.png diff --git a/prerender/browse/minecraft/podzol/index.html b/static/browse/minecraft/podzol/index.html similarity index 100% rename from prerender/browse/minecraft/podzol/index.html rename to static/browse/minecraft/podzol/index.html diff --git a/src/data/minecraft/1.7.10/images/poisonous_potato.png b/static/browse/minecraft/poisonous_potato/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/poisonous_potato.png rename to static/browse/minecraft/poisonous_potato/icon.png diff --git a/prerender/browse/minecraft/poisonous_potato/index.html b/static/browse/minecraft/poisonous_potato/index.html similarity index 100% rename from prerender/browse/minecraft/poisonous_potato/index.html rename to static/browse/minecraft/poisonous_potato/index.html diff --git a/src/data/minecraft/1.7.10/images/poppy.png b/static/browse/minecraft/poppy/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/poppy.png rename to static/browse/minecraft/poppy/icon.png diff --git a/prerender/browse/minecraft/poppy/index.html b/static/browse/minecraft/poppy/index.html similarity index 100% rename from prerender/browse/minecraft/poppy/index.html rename to static/browse/minecraft/poppy/index.html diff --git a/src/data/minecraft/1.7.10/images/potato.png b/static/browse/minecraft/potato/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/potato.png rename to static/browse/minecraft/potato/icon.png diff --git a/prerender/browse/minecraft/potato/index.html b/static/browse/minecraft/potato/index.html similarity index 100% rename from prerender/browse/minecraft/potato/index.html rename to static/browse/minecraft/potato/index.html diff --git a/src/data/minecraft/1.7.10/images/potion_of_fire_resistance_3_00.png b/static/browse/minecraft/potion_of_fire_resistance_3_00/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/potion_of_fire_resistance_3_00.png rename to static/browse/minecraft/potion_of_fire_resistance_3_00/icon.png diff --git a/prerender/browse/minecraft/potion_of_fire_resistance_3_00/index.html b/static/browse/minecraft/potion_of_fire_resistance_3_00/index.html similarity index 100% rename from prerender/browse/minecraft/potion_of_fire_resistance_3_00/index.html rename to static/browse/minecraft/potion_of_fire_resistance_3_00/index.html diff --git a/src/data/minecraft/1.7.10/images/potion_of_fire_resistance_8_00.png b/static/browse/minecraft/potion_of_fire_resistance_8_00/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/potion_of_fire_resistance_8_00.png rename to static/browse/minecraft/potion_of_fire_resistance_8_00/icon.png diff --git a/prerender/browse/minecraft/potion_of_fire_resistance_8_00/index.html b/static/browse/minecraft/potion_of_fire_resistance_8_00/index.html similarity index 100% rename from prerender/browse/minecraft/potion_of_fire_resistance_8_00/index.html rename to static/browse/minecraft/potion_of_fire_resistance_8_00/index.html diff --git a/src/data/minecraft/1.7.10/images/potion_of_harming.png b/static/browse/minecraft/potion_of_harming/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/potion_of_harming.png rename to static/browse/minecraft/potion_of_harming/icon.png diff --git a/prerender/browse/minecraft/potion_of_harming/index.html b/static/browse/minecraft/potion_of_harming/index.html similarity index 100% rename from prerender/browse/minecraft/potion_of_harming/index.html rename to static/browse/minecraft/potion_of_harming/index.html diff --git a/src/data/minecraft/1.7.10/images/potion_of_harming_ii.png b/static/browse/minecraft/potion_of_harming_ii/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/potion_of_harming_ii.png rename to static/browse/minecraft/potion_of_harming_ii/icon.png diff --git a/prerender/browse/minecraft/potion_of_harming_ii/index.html b/static/browse/minecraft/potion_of_harming_ii/index.html similarity index 100% rename from prerender/browse/minecraft/potion_of_harming_ii/index.html rename to static/browse/minecraft/potion_of_harming_ii/index.html diff --git a/src/data/minecraft/1.7.10/images/potion_of_healing.png b/static/browse/minecraft/potion_of_healing/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/potion_of_healing.png rename to static/browse/minecraft/potion_of_healing/icon.png diff --git a/prerender/browse/minecraft/potion_of_healing/index.html b/static/browse/minecraft/potion_of_healing/index.html similarity index 100% rename from prerender/browse/minecraft/potion_of_healing/index.html rename to static/browse/minecraft/potion_of_healing/index.html diff --git a/src/data/minecraft/1.7.10/images/potion_of_healing_ii.png b/static/browse/minecraft/potion_of_healing_ii/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/potion_of_healing_ii.png rename to static/browse/minecraft/potion_of_healing_ii/icon.png diff --git a/prerender/browse/minecraft/potion_of_healing_ii/index.html b/static/browse/minecraft/potion_of_healing_ii/index.html similarity index 100% rename from prerender/browse/minecraft/potion_of_healing_ii/index.html rename to static/browse/minecraft/potion_of_healing_ii/index.html diff --git a/src/data/minecraft/1.7.10/images/potion_of_invisibility.png b/static/browse/minecraft/potion_of_invisibility/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/potion_of_invisibility.png rename to static/browse/minecraft/potion_of_invisibility/icon.png diff --git a/src/data/minecraft/1.7.10/images/potion_of_invisibility_3_00.png b/static/browse/minecraft/potion_of_invisibility_3_00/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/potion_of_invisibility_3_00.png rename to static/browse/minecraft/potion_of_invisibility_3_00/icon.png diff --git a/prerender/browse/minecraft/potion_of_invisibility_3_00/index.html b/static/browse/minecraft/potion_of_invisibility_3_00/index.html similarity index 100% rename from prerender/browse/minecraft/potion_of_invisibility_3_00/index.html rename to static/browse/minecraft/potion_of_invisibility_3_00/index.html diff --git a/src/data/minecraft/1.7.10/images/potion_of_invisibility_8_00.png b/static/browse/minecraft/potion_of_invisibility_8_00/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/potion_of_invisibility_8_00.png rename to static/browse/minecraft/potion_of_invisibility_8_00/icon.png diff --git a/prerender/browse/minecraft/potion_of_invisibility_8_00/index.html b/static/browse/minecraft/potion_of_invisibility_8_00/index.html similarity index 100% rename from prerender/browse/minecraft/potion_of_invisibility_8_00/index.html rename to static/browse/minecraft/potion_of_invisibility_8_00/index.html diff --git a/src/data/minecraft/1.7.10/images/potion_of_night_vision_3_00.png b/static/browse/minecraft/potion_of_night_vision_3_00/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/potion_of_night_vision_3_00.png rename to static/browse/minecraft/potion_of_night_vision_3_00/icon.png diff --git a/prerender/browse/minecraft/potion_of_night_vision_3_00/index.html b/static/browse/minecraft/potion_of_night_vision_3_00/index.html similarity index 100% rename from prerender/browse/minecraft/potion_of_night_vision_3_00/index.html rename to static/browse/minecraft/potion_of_night_vision_3_00/index.html diff --git a/src/data/minecraft/1.7.10/images/potion_of_night_vision_8_00.png b/static/browse/minecraft/potion_of_night_vision_8_00/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/potion_of_night_vision_8_00.png rename to static/browse/minecraft/potion_of_night_vision_8_00/icon.png diff --git a/prerender/browse/minecraft/potion_of_night_vision_8_00/index.html b/static/browse/minecraft/potion_of_night_vision_8_00/index.html similarity index 100% rename from prerender/browse/minecraft/potion_of_night_vision_8_00/index.html rename to static/browse/minecraft/potion_of_night_vision_8_00/index.html diff --git a/src/data/minecraft/1.7.10/images/potion_of_poison_0_45.png b/static/browse/minecraft/potion_of_poison_0_45/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/potion_of_poison_0_45.png rename to static/browse/minecraft/potion_of_poison_0_45/icon.png diff --git a/prerender/browse/minecraft/potion_of_poison_0_45/index.html b/static/browse/minecraft/potion_of_poison_0_45/index.html similarity index 100% rename from prerender/browse/minecraft/potion_of_poison_0_45/index.html rename to static/browse/minecraft/potion_of_poison_0_45/index.html diff --git a/src/data/minecraft/1.7.10/images/potion_of_poison_2_00.png b/static/browse/minecraft/potion_of_poison_2_00/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/potion_of_poison_2_00.png rename to static/browse/minecraft/potion_of_poison_2_00/icon.png diff --git a/src/data/minecraft/1.7.10/images/potion_of_poison_ii_0_22.png b/static/browse/minecraft/potion_of_poison_ii_0_22/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/potion_of_poison_ii_0_22.png rename to static/browse/minecraft/potion_of_poison_ii_0_22/icon.png diff --git a/prerender/browse/minecraft/potion_of_poison_ii_0_22/index.html b/static/browse/minecraft/potion_of_poison_ii_0_22/index.html similarity index 100% rename from prerender/browse/minecraft/potion_of_poison_ii_0_22/index.html rename to static/browse/minecraft/potion_of_poison_ii_0_22/index.html diff --git a/src/data/minecraft/1.7.10/images/potion_of_regeneration_0_45.png b/static/browse/minecraft/potion_of_regeneration_0_45/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/potion_of_regeneration_0_45.png rename to static/browse/minecraft/potion_of_regeneration_0_45/icon.png diff --git a/prerender/browse/minecraft/potion_of_regeneration_0_45/index.html b/static/browse/minecraft/potion_of_regeneration_0_45/index.html similarity index 100% rename from prerender/browse/minecraft/potion_of_regeneration_0_45/index.html rename to static/browse/minecraft/potion_of_regeneration_0_45/index.html diff --git a/src/data/minecraft/1.7.10/images/potion_of_regeneration_2_00.png b/static/browse/minecraft/potion_of_regeneration_2_00/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/potion_of_regeneration_2_00.png rename to static/browse/minecraft/potion_of_regeneration_2_00/icon.png diff --git a/prerender/browse/minecraft/potion_of_regeneration_2_00/index.html b/static/browse/minecraft/potion_of_regeneration_2_00/index.html similarity index 100% rename from prerender/browse/minecraft/potion_of_regeneration_2_00/index.html rename to static/browse/minecraft/potion_of_regeneration_2_00/index.html diff --git a/src/data/minecraft/1.7.10/images/potion_of_regeneration_ii_0_22.png b/static/browse/minecraft/potion_of_regeneration_ii_0_22/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/potion_of_regeneration_ii_0_22.png rename to static/browse/minecraft/potion_of_regeneration_ii_0_22/icon.png diff --git a/prerender/browse/minecraft/potion_of_regeneration_ii_0_22/index.html b/static/browse/minecraft/potion_of_regeneration_ii_0_22/index.html similarity index 100% rename from prerender/browse/minecraft/potion_of_regeneration_ii_0_22/index.html rename to static/browse/minecraft/potion_of_regeneration_ii_0_22/index.html diff --git a/src/data/minecraft/1.7.10/images/potion_of_slowness_1_30.png b/static/browse/minecraft/potion_of_slowness_1_30/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/potion_of_slowness_1_30.png rename to static/browse/minecraft/potion_of_slowness_1_30/icon.png diff --git a/prerender/browse/minecraft/potion_of_slowness_1_30/index.html b/static/browse/minecraft/potion_of_slowness_1_30/index.html similarity index 100% rename from prerender/browse/minecraft/potion_of_slowness_1_30/index.html rename to static/browse/minecraft/potion_of_slowness_1_30/index.html diff --git a/src/data/minecraft/1.7.10/images/potion_of_slowness_4_00.png b/static/browse/minecraft/potion_of_slowness_4_00/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/potion_of_slowness_4_00.png rename to static/browse/minecraft/potion_of_slowness_4_00/icon.png diff --git a/prerender/browse/minecraft/potion_of_slowness_4_00/index.html b/static/browse/minecraft/potion_of_slowness_4_00/index.html similarity index 100% rename from prerender/browse/minecraft/potion_of_slowness_4_00/index.html rename to static/browse/minecraft/potion_of_slowness_4_00/index.html diff --git a/src/data/minecraft/1.7.10/images/potion_of_strength_3_00.png b/static/browse/minecraft/potion_of_strength_3_00/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/potion_of_strength_3_00.png rename to static/browse/minecraft/potion_of_strength_3_00/icon.png diff --git a/prerender/browse/minecraft/potion_of_strength_3_00/index.html b/static/browse/minecraft/potion_of_strength_3_00/index.html similarity index 100% rename from prerender/browse/minecraft/potion_of_strength_3_00/index.html rename to static/browse/minecraft/potion_of_strength_3_00/index.html diff --git a/src/data/minecraft/1.7.10/images/potion_of_strength_8_00.png b/static/browse/minecraft/potion_of_strength_8_00/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/potion_of_strength_8_00.png rename to static/browse/minecraft/potion_of_strength_8_00/icon.png diff --git a/prerender/browse/minecraft/potion_of_strength_8_00/index.html b/static/browse/minecraft/potion_of_strength_8_00/index.html similarity index 100% rename from prerender/browse/minecraft/potion_of_strength_8_00/index.html rename to static/browse/minecraft/potion_of_strength_8_00/index.html diff --git a/src/data/minecraft/1.7.10/images/potion_of_strength_ii_1_30.png b/static/browse/minecraft/potion_of_strength_ii_1_30/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/potion_of_strength_ii_1_30.png rename to static/browse/minecraft/potion_of_strength_ii_1_30/icon.png diff --git a/prerender/browse/minecraft/potion_of_strength_ii_1_30/index.html b/static/browse/minecraft/potion_of_strength_ii_1_30/index.html similarity index 100% rename from prerender/browse/minecraft/potion_of_strength_ii_1_30/index.html rename to static/browse/minecraft/potion_of_strength_ii_1_30/index.html diff --git a/src/data/minecraft/1.7.10/images/potion_of_swiftness_3_00.png b/static/browse/minecraft/potion_of_swiftness_3_00/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/potion_of_swiftness_3_00.png rename to static/browse/minecraft/potion_of_swiftness_3_00/icon.png diff --git a/prerender/browse/minecraft/potion_of_swiftness_3_00/index.html b/static/browse/minecraft/potion_of_swiftness_3_00/index.html similarity index 100% rename from prerender/browse/minecraft/potion_of_swiftness_3_00/index.html rename to static/browse/minecraft/potion_of_swiftness_3_00/index.html diff --git a/src/data/minecraft/1.7.10/images/potion_of_swiftness_8_00.png b/static/browse/minecraft/potion_of_swiftness_8_00/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/potion_of_swiftness_8_00.png rename to static/browse/minecraft/potion_of_swiftness_8_00/icon.png diff --git a/prerender/browse/minecraft/potion_of_swiftness_8_00/index.html b/static/browse/minecraft/potion_of_swiftness_8_00/index.html similarity index 100% rename from prerender/browse/minecraft/potion_of_swiftness_8_00/index.html rename to static/browse/minecraft/potion_of_swiftness_8_00/index.html diff --git a/src/data/minecraft/1.7.10/images/potion_of_swiftness_ii_1_30.png b/static/browse/minecraft/potion_of_swiftness_ii_1_30/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/potion_of_swiftness_ii_1_30.png rename to static/browse/minecraft/potion_of_swiftness_ii_1_30/icon.png diff --git a/prerender/browse/minecraft/potion_of_swiftness_ii_1_30/index.html b/static/browse/minecraft/potion_of_swiftness_ii_1_30/index.html similarity index 100% rename from prerender/browse/minecraft/potion_of_swiftness_ii_1_30/index.html rename to static/browse/minecraft/potion_of_swiftness_ii_1_30/index.html diff --git a/src/data/minecraft/1.7.10/images/potion_of_water_breathing_3_00.png b/static/browse/minecraft/potion_of_water_breathing_3_00/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/potion_of_water_breathing_3_00.png rename to static/browse/minecraft/potion_of_water_breathing_3_00/icon.png diff --git a/prerender/browse/minecraft/potion_of_water_breathing_3_00/index.html b/static/browse/minecraft/potion_of_water_breathing_3_00/index.html similarity index 100% rename from prerender/browse/minecraft/potion_of_water_breathing_3_00/index.html rename to static/browse/minecraft/potion_of_water_breathing_3_00/index.html diff --git a/src/data/minecraft/1.7.10/images/potion_of_water_breathing_8_00.png b/static/browse/minecraft/potion_of_water_breathing_8_00/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/potion_of_water_breathing_8_00.png rename to static/browse/minecraft/potion_of_water_breathing_8_00/icon.png diff --git a/prerender/browse/minecraft/potion_of_water_breathing_8_00/index.html b/static/browse/minecraft/potion_of_water_breathing_8_00/index.html similarity index 100% rename from prerender/browse/minecraft/potion_of_water_breathing_8_00/index.html rename to static/browse/minecraft/potion_of_water_breathing_8_00/index.html diff --git a/src/data/minecraft/1.7.10/images/potion_of_weakness_1_30.png b/static/browse/minecraft/potion_of_weakness_1_30/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/potion_of_weakness_1_30.png rename to static/browse/minecraft/potion_of_weakness_1_30/icon.png diff --git a/prerender/browse/minecraft/potion_of_weakness_1_30/index.html b/static/browse/minecraft/potion_of_weakness_1_30/index.html similarity index 100% rename from prerender/browse/minecraft/potion_of_weakness_1_30/index.html rename to static/browse/minecraft/potion_of_weakness_1_30/index.html diff --git a/src/data/minecraft/1.7.10/images/potion_of_weakness_4_00.png b/static/browse/minecraft/potion_of_weakness_4_00/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/potion_of_weakness_4_00.png rename to static/browse/minecraft/potion_of_weakness_4_00/icon.png diff --git a/prerender/browse/minecraft/potion_of_weakness_4_00/index.html b/static/browse/minecraft/potion_of_weakness_4_00/index.html similarity index 100% rename from prerender/browse/minecraft/potion_of_weakness_4_00/index.html rename to static/browse/minecraft/potion_of_weakness_4_00/index.html diff --git a/src/data/minecraft/1.7.10/images/powered_rail.png b/static/browse/minecraft/powered_rail/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/powered_rail.png rename to static/browse/minecraft/powered_rail/icon.png diff --git a/prerender/browse/minecraft/powered_rail/index.html b/static/browse/minecraft/powered_rail/index.html similarity index 100% rename from prerender/browse/minecraft/powered_rail/index.html rename to static/browse/minecraft/powered_rail/index.html diff --git a/src/data/minecraft/1.7.10/images/pressure_plate.png b/static/browse/minecraft/pressure_plate/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/pressure_plate.png rename to static/browse/minecraft/pressure_plate/icon.png diff --git a/src/data/minecraft/1.7.10/images/pressure_plate_stone.png b/static/browse/minecraft/pressure_plate_stone/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/pressure_plate_stone.png rename to static/browse/minecraft/pressure_plate_stone/icon.png diff --git a/prerender/browse/minecraft/pressure_plate_stone/index.html b/static/browse/minecraft/pressure_plate_stone/index.html similarity index 100% rename from prerender/browse/minecraft/pressure_plate_stone/index.html rename to static/browse/minecraft/pressure_plate_stone/index.html diff --git a/src/data/minecraft/1.7.10/images/pressure_plate_wood.png b/static/browse/minecraft/pressure_plate_wood/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/pressure_plate_wood.png rename to static/browse/minecraft/pressure_plate_wood/icon.png diff --git a/prerender/browse/minecraft/pressure_plate_wood/index.html b/static/browse/minecraft/pressure_plate_wood/index.html similarity index 100% rename from prerender/browse/minecraft/pressure_plate_wood/index.html rename to static/browse/minecraft/pressure_plate_wood/index.html diff --git a/src/data/minecraft/1.7.10/images/pufferfish.png b/static/browse/minecraft/pufferfish/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/pufferfish.png rename to static/browse/minecraft/pufferfish/icon.png diff --git a/prerender/browse/minecraft/pufferfish/index.html b/static/browse/minecraft/pufferfish/index.html similarity index 100% rename from prerender/browse/minecraft/pufferfish/index.html rename to static/browse/minecraft/pufferfish/index.html diff --git a/src/data/minecraft/1.7.10/images/pumpkin.png b/static/browse/minecraft/pumpkin/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/pumpkin.png rename to static/browse/minecraft/pumpkin/icon.png diff --git a/prerender/browse/minecraft/pumpkin/index.html b/static/browse/minecraft/pumpkin/index.html similarity index 100% rename from prerender/browse/minecraft/pumpkin/index.html rename to static/browse/minecraft/pumpkin/index.html diff --git a/src/data/minecraft/1.7.10/images/pumpkin_pie.png b/static/browse/minecraft/pumpkin_pie/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/pumpkin_pie.png rename to static/browse/minecraft/pumpkin_pie/icon.png diff --git a/prerender/browse/minecraft/pumpkin_pie/index.html b/static/browse/minecraft/pumpkin_pie/index.html similarity index 100% rename from prerender/browse/minecraft/pumpkin_pie/index.html rename to static/browse/minecraft/pumpkin_pie/index.html diff --git a/src/data/minecraft/1.7.10/images/pumpkin_seeds.png b/static/browse/minecraft/pumpkin_seeds/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/pumpkin_seeds.png rename to static/browse/minecraft/pumpkin_seeds/icon.png diff --git a/prerender/browse/minecraft/pumpkin_seeds/index.html b/static/browse/minecraft/pumpkin_seeds/index.html similarity index 100% rename from prerender/browse/minecraft/pumpkin_seeds/index.html rename to static/browse/minecraft/pumpkin_seeds/index.html diff --git a/src/data/minecraft/1.7.10/images/purple_carpet.png b/static/browse/minecraft/purple_carpet/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/purple_carpet.png rename to static/browse/minecraft/purple_carpet/icon.png diff --git a/prerender/browse/minecraft/purple_carpet/index.html b/static/browse/minecraft/purple_carpet/index.html similarity index 100% rename from prerender/browse/minecraft/purple_carpet/index.html rename to static/browse/minecraft/purple_carpet/index.html diff --git a/src/data/minecraft/1.7.10/images/purple_dye.png b/static/browse/minecraft/purple_dye/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/purple_dye.png rename to static/browse/minecraft/purple_dye/icon.png diff --git a/prerender/browse/minecraft/purple_dye/index.html b/static/browse/minecraft/purple_dye/index.html similarity index 100% rename from prerender/browse/minecraft/purple_dye/index.html rename to static/browse/minecraft/purple_dye/index.html diff --git a/src/data/minecraft/1.7.10/images/purple_stained_clay.png b/static/browse/minecraft/purple_stained_clay/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/purple_stained_clay.png rename to static/browse/minecraft/purple_stained_clay/icon.png diff --git a/prerender/browse/minecraft/purple_stained_clay/index.html b/static/browse/minecraft/purple_stained_clay/index.html similarity index 100% rename from prerender/browse/minecraft/purple_stained_clay/index.html rename to static/browse/minecraft/purple_stained_clay/index.html diff --git a/src/data/minecraft/1.7.10/images/purple_stained_glass.png b/static/browse/minecraft/purple_stained_glass/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/purple_stained_glass.png rename to static/browse/minecraft/purple_stained_glass/icon.png diff --git a/prerender/browse/minecraft/purple_stained_glass/index.html b/static/browse/minecraft/purple_stained_glass/index.html similarity index 100% rename from prerender/browse/minecraft/purple_stained_glass/index.html rename to static/browse/minecraft/purple_stained_glass/index.html diff --git a/src/data/minecraft/1.7.10/images/purple_stained_glass_pane.png b/static/browse/minecraft/purple_stained_glass_pane/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/purple_stained_glass_pane.png rename to static/browse/minecraft/purple_stained_glass_pane/icon.png diff --git a/prerender/browse/minecraft/purple_stained_glass_pane/index.html b/static/browse/minecraft/purple_stained_glass_pane/index.html similarity index 100% rename from prerender/browse/minecraft/purple_stained_glass_pane/index.html rename to static/browse/minecraft/purple_stained_glass_pane/index.html diff --git a/src/data/minecraft/1.7.10/images/purple_wool.png b/static/browse/minecraft/purple_wool/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/purple_wool.png rename to static/browse/minecraft/purple_wool/icon.png diff --git a/prerender/browse/minecraft/purple_wool/index.html b/static/browse/minecraft/purple_wool/index.html similarity index 100% rename from prerender/browse/minecraft/purple_wool/index.html rename to static/browse/minecraft/purple_wool/index.html diff --git a/src/data/minecraft/1.7.10/images/quartz_slab.png b/static/browse/minecraft/quartz_slab/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/quartz_slab.png rename to static/browse/minecraft/quartz_slab/icon.png diff --git a/prerender/browse/minecraft/quartz_slab/index.html b/static/browse/minecraft/quartz_slab/index.html similarity index 100% rename from prerender/browse/minecraft/quartz_slab/index.html rename to static/browse/minecraft/quartz_slab/index.html diff --git a/src/data/minecraft/1.7.10/images/quartz_stairs.png b/static/browse/minecraft/quartz_stairs/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/quartz_stairs.png rename to static/browse/minecraft/quartz_stairs/icon.png diff --git a/prerender/browse/minecraft/quartz_stairs/index.html b/static/browse/minecraft/quartz_stairs/index.html similarity index 100% rename from prerender/browse/minecraft/quartz_stairs/index.html rename to static/browse/minecraft/quartz_stairs/index.html diff --git a/src/data/minecraft/1.7.10/images/rail.png b/static/browse/minecraft/rail/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/rail.png rename to static/browse/minecraft/rail/icon.png diff --git a/prerender/browse/minecraft/rail/index.html b/static/browse/minecraft/rail/index.html similarity index 100% rename from prerender/browse/minecraft/rail/index.html rename to static/browse/minecraft/rail/index.html diff --git a/src/data/minecraft/1.7.10/images/raw_beef.png b/static/browse/minecraft/raw_beef/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/raw_beef.png rename to static/browse/minecraft/raw_beef/icon.png diff --git a/prerender/browse/minecraft/raw_beef/index.html b/static/browse/minecraft/raw_beef/index.html similarity index 100% rename from prerender/browse/minecraft/raw_beef/index.html rename to static/browse/minecraft/raw_beef/index.html diff --git a/src/data/minecraft/1.7.10/images/raw_chicken.png b/static/browse/minecraft/raw_chicken/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/raw_chicken.png rename to static/browse/minecraft/raw_chicken/icon.png diff --git a/prerender/browse/minecraft/raw_chicken/index.html b/static/browse/minecraft/raw_chicken/index.html similarity index 100% rename from prerender/browse/minecraft/raw_chicken/index.html rename to static/browse/minecraft/raw_chicken/index.html diff --git a/src/data/minecraft/1.7.10/images/raw_fish.png b/static/browse/minecraft/raw_fish/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/raw_fish.png rename to static/browse/minecraft/raw_fish/icon.png diff --git a/prerender/browse/minecraft/raw_fish/index.html b/static/browse/minecraft/raw_fish/index.html similarity index 100% rename from prerender/browse/minecraft/raw_fish/index.html rename to static/browse/minecraft/raw_fish/index.html diff --git a/src/data/minecraft/1.7.10/images/raw_porkchop.png b/static/browse/minecraft/raw_porkchop/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/raw_porkchop.png rename to static/browse/minecraft/raw_porkchop/icon.png diff --git a/prerender/browse/minecraft/raw_porkchop/index.html b/static/browse/minecraft/raw_porkchop/index.html similarity index 100% rename from prerender/browse/minecraft/raw_porkchop/index.html rename to static/browse/minecraft/raw_porkchop/index.html diff --git a/src/data/minecraft/1.7.10/images/raw_salmon.png b/static/browse/minecraft/raw_salmon/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/raw_salmon.png rename to static/browse/minecraft/raw_salmon/icon.png diff --git a/prerender/browse/minecraft/raw_salmon/index.html b/static/browse/minecraft/raw_salmon/index.html similarity index 100% rename from prerender/browse/minecraft/raw_salmon/index.html rename to static/browse/minecraft/raw_salmon/index.html diff --git a/src/data/minecraft/1.7.10/images/red_carpet.png b/static/browse/minecraft/red_carpet/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/red_carpet.png rename to static/browse/minecraft/red_carpet/icon.png diff --git a/prerender/browse/minecraft/red_carpet/index.html b/static/browse/minecraft/red_carpet/index.html similarity index 100% rename from prerender/browse/minecraft/red_carpet/index.html rename to static/browse/minecraft/red_carpet/index.html diff --git a/src/data/minecraft/1.7.10/images/red_sand.png b/static/browse/minecraft/red_sand/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/red_sand.png rename to static/browse/minecraft/red_sand/icon.png diff --git a/prerender/browse/minecraft/red_sand/index.html b/static/browse/minecraft/red_sand/index.html similarity index 100% rename from prerender/browse/minecraft/red_sand/index.html rename to static/browse/minecraft/red_sand/index.html diff --git a/src/data/minecraft/1.7.10/images/red_stained_clay.png b/static/browse/minecraft/red_stained_clay/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/red_stained_clay.png rename to static/browse/minecraft/red_stained_clay/icon.png diff --git a/prerender/browse/minecraft/red_stained_clay/index.html b/static/browse/minecraft/red_stained_clay/index.html similarity index 100% rename from prerender/browse/minecraft/red_stained_clay/index.html rename to static/browse/minecraft/red_stained_clay/index.html diff --git a/src/data/minecraft/1.7.10/images/red_stained_glass.png b/static/browse/minecraft/red_stained_glass/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/red_stained_glass.png rename to static/browse/minecraft/red_stained_glass/icon.png diff --git a/prerender/browse/minecraft/red_stained_glass/index.html b/static/browse/minecraft/red_stained_glass/index.html similarity index 100% rename from prerender/browse/minecraft/red_stained_glass/index.html rename to static/browse/minecraft/red_stained_glass/index.html diff --git a/src/data/minecraft/1.7.10/images/red_stained_glass_pane.png b/static/browse/minecraft/red_stained_glass_pane/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/red_stained_glass_pane.png rename to static/browse/minecraft/red_stained_glass_pane/icon.png diff --git a/prerender/browse/minecraft/red_stained_glass_pane/index.html b/static/browse/minecraft/red_stained_glass_pane/index.html similarity index 100% rename from prerender/browse/minecraft/red_stained_glass_pane/index.html rename to static/browse/minecraft/red_stained_glass_pane/index.html diff --git a/src/data/minecraft/1.7.10/images/red_tulip.png b/static/browse/minecraft/red_tulip/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/red_tulip.png rename to static/browse/minecraft/red_tulip/icon.png diff --git a/prerender/browse/minecraft/red_tulip/index.html b/static/browse/minecraft/red_tulip/index.html similarity index 100% rename from prerender/browse/minecraft/red_tulip/index.html rename to static/browse/minecraft/red_tulip/index.html diff --git a/src/data/minecraft/1.7.10/images/red_wool.png b/static/browse/minecraft/red_wool/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/red_wool.png rename to static/browse/minecraft/red_wool/icon.png diff --git a/prerender/browse/minecraft/red_wool/index.html b/static/browse/minecraft/red_wool/index.html similarity index 100% rename from prerender/browse/minecraft/red_wool/index.html rename to static/browse/minecraft/red_wool/index.html diff --git a/src/data/minecraft/1.7.10/images/redstone.png b/static/browse/minecraft/redstone/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/redstone.png rename to static/browse/minecraft/redstone/icon.png diff --git a/prerender/browse/minecraft/redstone/index.html b/static/browse/minecraft/redstone/index.html similarity index 100% rename from prerender/browse/minecraft/redstone/index.html rename to static/browse/minecraft/redstone/index.html diff --git a/src/data/minecraft/1.7.10/images/redstone_comparator.png b/static/browse/minecraft/redstone_comparator/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/redstone_comparator.png rename to static/browse/minecraft/redstone_comparator/icon.png diff --git a/prerender/browse/minecraft/redstone_comparator/index.html b/static/browse/minecraft/redstone_comparator/index.html similarity index 100% rename from prerender/browse/minecraft/redstone_comparator/index.html rename to static/browse/minecraft/redstone_comparator/index.html diff --git a/src/data/minecraft/1.7.10/images/redstone_lamp.png b/static/browse/minecraft/redstone_lamp/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/redstone_lamp.png rename to static/browse/minecraft/redstone_lamp/icon.png diff --git a/prerender/browse/minecraft/redstone_lamp/index.html b/static/browse/minecraft/redstone_lamp/index.html similarity index 100% rename from prerender/browse/minecraft/redstone_lamp/index.html rename to static/browse/minecraft/redstone_lamp/index.html diff --git a/src/data/minecraft/1.7.10/images/redstone_ore.png b/static/browse/minecraft/redstone_ore/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/redstone_ore.png rename to static/browse/minecraft/redstone_ore/icon.png diff --git a/prerender/browse/minecraft/redstone_ore/index.html b/static/browse/minecraft/redstone_ore/index.html similarity index 100% rename from prerender/browse/minecraft/redstone_ore/index.html rename to static/browse/minecraft/redstone_ore/index.html diff --git a/src/data/minecraft/1.7.10/images/redstone_repeater.png b/static/browse/minecraft/redstone_repeater/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/redstone_repeater.png rename to static/browse/minecraft/redstone_repeater/icon.png diff --git a/prerender/browse/minecraft/redstone_repeater/index.html b/static/browse/minecraft/redstone_repeater/index.html similarity index 100% rename from prerender/browse/minecraft/redstone_repeater/index.html rename to static/browse/minecraft/redstone_repeater/index.html diff --git a/src/data/minecraft/1.7.10/images/redstone_torch.png b/static/browse/minecraft/redstone_torch/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/redstone_torch.png rename to static/browse/minecraft/redstone_torch/icon.png diff --git a/prerender/browse/minecraft/redstone_torch/index.html b/static/browse/minecraft/redstone_torch/index.html similarity index 100% rename from prerender/browse/minecraft/redstone_torch/index.html rename to static/browse/minecraft/redstone_torch/index.html diff --git a/src/data/minecraft/1.7.10/images/rose_bush.png b/static/browse/minecraft/rose_bush/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/rose_bush.png rename to static/browse/minecraft/rose_bush/icon.png diff --git a/prerender/browse/minecraft/rose_bush/index.html b/static/browse/minecraft/rose_bush/index.html similarity index 100% rename from prerender/browse/minecraft/rose_bush/index.html rename to static/browse/minecraft/rose_bush/index.html diff --git a/src/data/minecraft/1.7.10/images/rose_red.png b/static/browse/minecraft/rose_red/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/rose_red.png rename to static/browse/minecraft/rose_red/icon.png diff --git a/prerender/browse/minecraft/rose_red/index.html b/static/browse/minecraft/rose_red/index.html similarity index 100% rename from prerender/browse/minecraft/rose_red/index.html rename to static/browse/minecraft/rose_red/index.html diff --git a/src/data/minecraft/1.7.10/images/rotten_flesh.png b/static/browse/minecraft/rotten_flesh/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/rotten_flesh.png rename to static/browse/minecraft/rotten_flesh/icon.png diff --git a/prerender/browse/minecraft/rotten_flesh/index.html b/static/browse/minecraft/rotten_flesh/index.html similarity index 100% rename from prerender/browse/minecraft/rotten_flesh/index.html rename to static/browse/minecraft/rotten_flesh/index.html diff --git a/src/data/minecraft/1.7.10/images/saddle.png b/static/browse/minecraft/saddle/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/saddle.png rename to static/browse/minecraft/saddle/icon.png diff --git a/prerender/browse/minecraft/saddle/index.html b/static/browse/minecraft/saddle/index.html similarity index 100% rename from prerender/browse/minecraft/saddle/index.html rename to static/browse/minecraft/saddle/index.html diff --git a/src/data/minecraft/1.7.10/images/sand.png b/static/browse/minecraft/sand/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/sand.png rename to static/browse/minecraft/sand/icon.png diff --git a/prerender/browse/minecraft/sand/index.html b/static/browse/minecraft/sand/index.html similarity index 100% rename from prerender/browse/minecraft/sand/index.html rename to static/browse/minecraft/sand/index.html diff --git a/src/data/minecraft/1.7.10/images/sandstone.png b/static/browse/minecraft/sandstone/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/sandstone.png rename to static/browse/minecraft/sandstone/icon.png diff --git a/prerender/browse/minecraft/sandstone/index.html b/static/browse/minecraft/sandstone/index.html similarity index 100% rename from prerender/browse/minecraft/sandstone/index.html rename to static/browse/minecraft/sandstone/index.html diff --git a/src/data/minecraft/1.7.10/images/sandstone_slab.png b/static/browse/minecraft/sandstone_slab/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/sandstone_slab.png rename to static/browse/minecraft/sandstone_slab/icon.png diff --git a/prerender/browse/minecraft/sandstone_slab/index.html b/static/browse/minecraft/sandstone_slab/index.html similarity index 100% rename from prerender/browse/minecraft/sandstone_slab/index.html rename to static/browse/minecraft/sandstone_slab/index.html diff --git a/src/data/minecraft/1.7.10/images/sandstone_stairs.png b/static/browse/minecraft/sandstone_stairs/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/sandstone_stairs.png rename to static/browse/minecraft/sandstone_stairs/icon.png diff --git a/prerender/browse/minecraft/sandstone_stairs/index.html b/static/browse/minecraft/sandstone_stairs/index.html similarity index 100% rename from prerender/browse/minecraft/sandstone_stairs/index.html rename to static/browse/minecraft/sandstone_stairs/index.html diff --git a/src/data/minecraft/1.7.10/images/seeds.png b/static/browse/minecraft/seeds/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/seeds.png rename to static/browse/minecraft/seeds/icon.png diff --git a/prerender/browse/minecraft/seeds/index.html b/static/browse/minecraft/seeds/index.html similarity index 100% rename from prerender/browse/minecraft/seeds/index.html rename to static/browse/minecraft/seeds/index.html diff --git a/src/data/minecraft/1.7.10/images/shears.png b/static/browse/minecraft/shears/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/shears.png rename to static/browse/minecraft/shears/icon.png diff --git a/prerender/browse/minecraft/shears/index.html b/static/browse/minecraft/shears/index.html similarity index 100% rename from prerender/browse/minecraft/shears/index.html rename to static/browse/minecraft/shears/index.html diff --git a/src/data/minecraft/1.7.10/images/sign.png b/static/browse/minecraft/sign/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/sign.png rename to static/browse/minecraft/sign/icon.png diff --git a/prerender/browse/minecraft/sign/index.html b/static/browse/minecraft/sign/index.html similarity index 100% rename from prerender/browse/minecraft/sign/index.html rename to static/browse/minecraft/sign/index.html diff --git a/src/data/minecraft/1.7.10/images/skeleton_skull.png b/static/browse/minecraft/skeleton_skull/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/skeleton_skull.png rename to static/browse/minecraft/skeleton_skull/icon.png diff --git a/prerender/browse/minecraft/skeleton_skull/index.html b/static/browse/minecraft/skeleton_skull/index.html similarity index 100% rename from prerender/browse/minecraft/skeleton_skull/index.html rename to static/browse/minecraft/skeleton_skull/index.html diff --git a/src/data/minecraft/1.7.10/images/slightly_damaged_anvil.png b/static/browse/minecraft/slightly_damaged_anvil/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/slightly_damaged_anvil.png rename to static/browse/minecraft/slightly_damaged_anvil/icon.png diff --git a/src/data/minecraft/1.7.10/images/slimeball.png b/static/browse/minecraft/slimeball/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/slimeball.png rename to static/browse/minecraft/slimeball/icon.png diff --git a/prerender/browse/minecraft/slimeball/index.html b/static/browse/minecraft/slimeball/index.html similarity index 100% rename from prerender/browse/minecraft/slimeball/index.html rename to static/browse/minecraft/slimeball/index.html diff --git a/src/data/minecraft/1.7.10/images/smooth_sandstone.png b/static/browse/minecraft/smooth_sandstone/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/smooth_sandstone.png rename to static/browse/minecraft/smooth_sandstone/icon.png diff --git a/prerender/browse/minecraft/smooth_sandstone/index.html b/static/browse/minecraft/smooth_sandstone/index.html similarity index 100% rename from prerender/browse/minecraft/smooth_sandstone/index.html rename to static/browse/minecraft/smooth_sandstone/index.html diff --git a/src/data/minecraft/1.7.10/images/snow.png b/static/browse/minecraft/snow/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/snow.png rename to static/browse/minecraft/snow/icon.png diff --git a/src/data/minecraft/1.7.10/images/snow_block.png b/static/browse/minecraft/snow_block/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/snow_block.png rename to static/browse/minecraft/snow_block/icon.png diff --git a/prerender/browse/minecraft/snow_block/index.html b/static/browse/minecraft/snow_block/index.html similarity index 100% rename from prerender/browse/minecraft/snow_block/index.html rename to static/browse/minecraft/snow_block/index.html diff --git a/src/data/minecraft/1.7.10/images/snow_carpet.png b/static/browse/minecraft/snow_carpet/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/snow_carpet.png rename to static/browse/minecraft/snow_carpet/icon.png diff --git a/prerender/browse/minecraft/snow_carpet/index.html b/static/browse/minecraft/snow_carpet/index.html similarity index 100% rename from prerender/browse/minecraft/snow_carpet/index.html rename to static/browse/minecraft/snow_carpet/index.html diff --git a/src/data/minecraft/1.7.10/images/snowball.png b/static/browse/minecraft/snowball/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/snowball.png rename to static/browse/minecraft/snowball/icon.png diff --git a/prerender/browse/minecraft/snowball/index.html b/static/browse/minecraft/snowball/index.html similarity index 100% rename from prerender/browse/minecraft/snowball/index.html rename to static/browse/minecraft/snowball/index.html diff --git a/src/data/minecraft/1.7.10/images/soul_sand.png b/static/browse/minecraft/soul_sand/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/soul_sand.png rename to static/browse/minecraft/soul_sand/icon.png diff --git a/prerender/browse/minecraft/soul_sand/index.html b/static/browse/minecraft/soul_sand/index.html similarity index 100% rename from prerender/browse/minecraft/soul_sand/index.html rename to static/browse/minecraft/soul_sand/index.html diff --git a/src/data/minecraft/1.7.10/images/spawn_bat.png b/static/browse/minecraft/spawn_bat/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/spawn_bat.png rename to static/browse/minecraft/spawn_bat/icon.png diff --git a/prerender/browse/minecraft/spawn_bat/index.html b/static/browse/minecraft/spawn_bat/index.html similarity index 100% rename from prerender/browse/minecraft/spawn_bat/index.html rename to static/browse/minecraft/spawn_bat/index.html diff --git a/src/data/minecraft/1.7.10/images/spawn_blaze.png b/static/browse/minecraft/spawn_blaze/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/spawn_blaze.png rename to static/browse/minecraft/spawn_blaze/icon.png diff --git a/prerender/browse/minecraft/spawn_blaze/index.html b/static/browse/minecraft/spawn_blaze/index.html similarity index 100% rename from prerender/browse/minecraft/spawn_blaze/index.html rename to static/browse/minecraft/spawn_blaze/index.html diff --git a/src/data/minecraft/1.7.10/images/spawn_blizz.png b/static/browse/minecraft/spawn_blizz/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/spawn_blizz.png rename to static/browse/minecraft/spawn_blizz/icon.png diff --git a/src/data/minecraft/1.7.10/images/spawn_cave_spider.png b/static/browse/minecraft/spawn_cave_spider/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/spawn_cave_spider.png rename to static/browse/minecraft/spawn_cave_spider/icon.png diff --git a/prerender/browse/minecraft/spawn_cave_spider/index.html b/static/browse/minecraft/spawn_cave_spider/index.html similarity index 100% rename from prerender/browse/minecraft/spawn_cave_spider/index.html rename to static/browse/minecraft/spawn_cave_spider/index.html diff --git a/src/data/minecraft/1.7.10/images/spawn_chicken.png b/static/browse/minecraft/spawn_chicken/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/spawn_chicken.png rename to static/browse/minecraft/spawn_chicken/icon.png diff --git a/prerender/browse/minecraft/spawn_chicken/index.html b/static/browse/minecraft/spawn_chicken/index.html similarity index 100% rename from prerender/browse/minecraft/spawn_chicken/index.html rename to static/browse/minecraft/spawn_chicken/index.html diff --git a/src/data/minecraft/1.7.10/images/spawn_cow.png b/static/browse/minecraft/spawn_cow/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/spawn_cow.png rename to static/browse/minecraft/spawn_cow/icon.png diff --git a/prerender/browse/minecraft/spawn_cow/index.html b/static/browse/minecraft/spawn_cow/index.html similarity index 100% rename from prerender/browse/minecraft/spawn_cow/index.html rename to static/browse/minecraft/spawn_cow/index.html diff --git a/src/data/minecraft/1.7.10/images/spawn_creeper.png b/static/browse/minecraft/spawn_creeper/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/spawn_creeper.png rename to static/browse/minecraft/spawn_creeper/icon.png diff --git a/prerender/browse/minecraft/spawn_creeper/index.html b/static/browse/minecraft/spawn_creeper/index.html similarity index 100% rename from prerender/browse/minecraft/spawn_creeper/index.html rename to static/browse/minecraft/spawn_creeper/index.html diff --git a/src/data/minecraft/1.7.10/images/spawn_enderman.png b/static/browse/minecraft/spawn_enderman/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/spawn_enderman.png rename to static/browse/minecraft/spawn_enderman/icon.png diff --git a/prerender/browse/minecraft/spawn_enderman/index.html b/static/browse/minecraft/spawn_enderman/index.html similarity index 100% rename from prerender/browse/minecraft/spawn_enderman/index.html rename to static/browse/minecraft/spawn_enderman/index.html diff --git a/src/data/minecraft/1.7.10/images/spawn_ghast.png b/static/browse/minecraft/spawn_ghast/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/spawn_ghast.png rename to static/browse/minecraft/spawn_ghast/icon.png diff --git a/prerender/browse/minecraft/spawn_ghast/index.html b/static/browse/minecraft/spawn_ghast/index.html similarity index 100% rename from prerender/browse/minecraft/spawn_ghast/index.html rename to static/browse/minecraft/spawn_ghast/index.html diff --git a/src/data/minecraft/1.7.10/images/spawn_horse.png b/static/browse/minecraft/spawn_horse/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/spawn_horse.png rename to static/browse/minecraft/spawn_horse/icon.png diff --git a/prerender/browse/minecraft/spawn_horse/index.html b/static/browse/minecraft/spawn_horse/index.html similarity index 100% rename from prerender/browse/minecraft/spawn_horse/index.html rename to static/browse/minecraft/spawn_horse/index.html diff --git a/src/data/minecraft/1.7.10/images/spawn_iron_golem.png b/static/browse/minecraft/spawn_iron_golem/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/spawn_iron_golem.png rename to static/browse/minecraft/spawn_iron_golem/icon.png diff --git a/prerender/browse/minecraft/spawn_iron_golem/index.html b/static/browse/minecraft/spawn_iron_golem/index.html similarity index 100% rename from prerender/browse/minecraft/spawn_iron_golem/index.html rename to static/browse/minecraft/spawn_iron_golem/index.html diff --git a/src/data/minecraft/1.7.10/images/spawn_magma_cube.png b/static/browse/minecraft/spawn_magma_cube/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/spawn_magma_cube.png rename to static/browse/minecraft/spawn_magma_cube/icon.png diff --git a/prerender/browse/minecraft/spawn_magma_cube/index.html b/static/browse/minecraft/spawn_magma_cube/index.html similarity index 100% rename from prerender/browse/minecraft/spawn_magma_cube/index.html rename to static/browse/minecraft/spawn_magma_cube/index.html diff --git a/src/data/minecraft/1.7.10/images/spawn_mooshroom.png b/static/browse/minecraft/spawn_mooshroom/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/spawn_mooshroom.png rename to static/browse/minecraft/spawn_mooshroom/icon.png diff --git a/prerender/browse/minecraft/spawn_mooshroom/index.html b/static/browse/minecraft/spawn_mooshroom/index.html similarity index 100% rename from prerender/browse/minecraft/spawn_mooshroom/index.html rename to static/browse/minecraft/spawn_mooshroom/index.html diff --git a/src/data/minecraft/1.7.10/images/spawn_ocelot.png b/static/browse/minecraft/spawn_ocelot/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/spawn_ocelot.png rename to static/browse/minecraft/spawn_ocelot/icon.png diff --git a/prerender/browse/minecraft/spawn_ocelot/index.html b/static/browse/minecraft/spawn_ocelot/index.html similarity index 100% rename from prerender/browse/minecraft/spawn_ocelot/index.html rename to static/browse/minecraft/spawn_ocelot/index.html diff --git a/src/data/minecraft/1.7.10/images/spawn_pig.png b/static/browse/minecraft/spawn_pig/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/spawn_pig.png rename to static/browse/minecraft/spawn_pig/icon.png diff --git a/prerender/browse/minecraft/spawn_pig/index.html b/static/browse/minecraft/spawn_pig/index.html similarity index 100% rename from prerender/browse/minecraft/spawn_pig/index.html rename to static/browse/minecraft/spawn_pig/index.html diff --git a/src/data/minecraft/1.7.10/images/spawn_sheep.png b/static/browse/minecraft/spawn_sheep/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/spawn_sheep.png rename to static/browse/minecraft/spawn_sheep/icon.png diff --git a/prerender/browse/minecraft/spawn_sheep/index.html b/static/browse/minecraft/spawn_sheep/index.html similarity index 100% rename from prerender/browse/minecraft/spawn_sheep/index.html rename to static/browse/minecraft/spawn_sheep/index.html diff --git a/src/data/minecraft/1.7.10/images/spawn_silverfish.png b/static/browse/minecraft/spawn_silverfish/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/spawn_silverfish.png rename to static/browse/minecraft/spawn_silverfish/icon.png diff --git a/prerender/browse/minecraft/spawn_silverfish/index.html b/static/browse/minecraft/spawn_silverfish/index.html similarity index 100% rename from prerender/browse/minecraft/spawn_silverfish/index.html rename to static/browse/minecraft/spawn_silverfish/index.html diff --git a/src/data/minecraft/1.7.10/images/spawn_skeleton.png b/static/browse/minecraft/spawn_skeleton/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/spawn_skeleton.png rename to static/browse/minecraft/spawn_skeleton/icon.png diff --git a/prerender/browse/minecraft/spawn_skeleton/index.html b/static/browse/minecraft/spawn_skeleton/index.html similarity index 100% rename from prerender/browse/minecraft/spawn_skeleton/index.html rename to static/browse/minecraft/spawn_skeleton/index.html diff --git a/src/data/minecraft/1.7.10/images/spawn_slime.png b/static/browse/minecraft/spawn_slime/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/spawn_slime.png rename to static/browse/minecraft/spawn_slime/icon.png diff --git a/prerender/browse/minecraft/spawn_slime/index.html b/static/browse/minecraft/spawn_slime/index.html similarity index 100% rename from prerender/browse/minecraft/spawn_slime/index.html rename to static/browse/minecraft/spawn_slime/index.html diff --git a/src/data/minecraft/1.7.10/images/spawn_snow_golem.png b/static/browse/minecraft/spawn_snow_golem/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/spawn_snow_golem.png rename to static/browse/minecraft/spawn_snow_golem/icon.png diff --git a/prerender/browse/minecraft/spawn_snow_golem/index.html b/static/browse/minecraft/spawn_snow_golem/index.html similarity index 100% rename from prerender/browse/minecraft/spawn_snow_golem/index.html rename to static/browse/minecraft/spawn_snow_golem/index.html diff --git a/src/data/minecraft/1.7.10/images/spawn_spider.png b/static/browse/minecraft/spawn_spider/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/spawn_spider.png rename to static/browse/minecraft/spawn_spider/icon.png diff --git a/prerender/browse/minecraft/spawn_spider/index.html b/static/browse/minecraft/spawn_spider/index.html similarity index 100% rename from prerender/browse/minecraft/spawn_spider/index.html rename to static/browse/minecraft/spawn_spider/index.html diff --git a/src/data/minecraft/1.7.10/images/spawn_squid.png b/static/browse/minecraft/spawn_squid/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/spawn_squid.png rename to static/browse/minecraft/spawn_squid/icon.png diff --git a/prerender/browse/minecraft/spawn_squid/index.html b/static/browse/minecraft/spawn_squid/index.html similarity index 100% rename from prerender/browse/minecraft/spawn_squid/index.html rename to static/browse/minecraft/spawn_squid/index.html diff --git a/src/data/minecraft/1.7.10/images/spawn_villager.png b/static/browse/minecraft/spawn_villager/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/spawn_villager.png rename to static/browse/minecraft/spawn_villager/icon.png diff --git a/prerender/browse/minecraft/spawn_villager/index.html b/static/browse/minecraft/spawn_villager/index.html similarity index 100% rename from prerender/browse/minecraft/spawn_villager/index.html rename to static/browse/minecraft/spawn_villager/index.html diff --git a/src/data/minecraft/1.7.10/images/spawn_witch.png b/static/browse/minecraft/spawn_witch/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/spawn_witch.png rename to static/browse/minecraft/spawn_witch/icon.png diff --git a/prerender/browse/minecraft/spawn_witch/index.html b/static/browse/minecraft/spawn_witch/index.html similarity index 100% rename from prerender/browse/minecraft/spawn_witch/index.html rename to static/browse/minecraft/spawn_witch/index.html diff --git a/src/data/minecraft/1.7.10/images/spawn_wolf.png b/static/browse/minecraft/spawn_wolf/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/spawn_wolf.png rename to static/browse/minecraft/spawn_wolf/icon.png diff --git a/prerender/browse/minecraft/spawn_wolf/index.html b/static/browse/minecraft/spawn_wolf/index.html similarity index 100% rename from prerender/browse/minecraft/spawn_wolf/index.html rename to static/browse/minecraft/spawn_wolf/index.html diff --git a/src/data/minecraft/1.7.10/images/spawn_zombie.png b/static/browse/minecraft/spawn_zombie/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/spawn_zombie.png rename to static/browse/minecraft/spawn_zombie/icon.png diff --git a/prerender/browse/minecraft/spawn_zombie/index.html b/static/browse/minecraft/spawn_zombie/index.html similarity index 100% rename from prerender/browse/minecraft/spawn_zombie/index.html rename to static/browse/minecraft/spawn_zombie/index.html diff --git a/src/data/minecraft/1.7.10/images/spawn_zombie_pigman.png b/static/browse/minecraft/spawn_zombie_pigman/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/spawn_zombie_pigman.png rename to static/browse/minecraft/spawn_zombie_pigman/icon.png diff --git a/prerender/browse/minecraft/spawn_zombie_pigman/index.html b/static/browse/minecraft/spawn_zombie_pigman/index.html similarity index 100% rename from prerender/browse/minecraft/spawn_zombie_pigman/index.html rename to static/browse/minecraft/spawn_zombie_pigman/index.html diff --git a/src/data/minecraft/1.7.10/images/spider_eye.png b/static/browse/minecraft/spider_eye/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/spider_eye.png rename to static/browse/minecraft/spider_eye/icon.png diff --git a/prerender/browse/minecraft/spider_eye/index.html b/static/browse/minecraft/spider_eye/index.html similarity index 100% rename from prerender/browse/minecraft/spider_eye/index.html rename to static/browse/minecraft/spider_eye/index.html diff --git a/src/data/minecraft/1.7.10/images/splash_potion_of_fire_resistance_2_15.png b/static/browse/minecraft/splash_potion_of_fire_resistance_2_15/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/splash_potion_of_fire_resistance_2_15.png rename to static/browse/minecraft/splash_potion_of_fire_resistance_2_15/icon.png diff --git a/prerender/browse/minecraft/splash_potion_of_fire_resistance_2_15/index.html b/static/browse/minecraft/splash_potion_of_fire_resistance_2_15/index.html similarity index 100% rename from prerender/browse/minecraft/splash_potion_of_fire_resistance_2_15/index.html rename to static/browse/minecraft/splash_potion_of_fire_resistance_2_15/index.html diff --git a/src/data/minecraft/1.7.10/images/splash_potion_of_fire_resistance_6_00.png b/static/browse/minecraft/splash_potion_of_fire_resistance_6_00/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/splash_potion_of_fire_resistance_6_00.png rename to static/browse/minecraft/splash_potion_of_fire_resistance_6_00/icon.png diff --git a/prerender/browse/minecraft/splash_potion_of_fire_resistance_6_00/index.html b/static/browse/minecraft/splash_potion_of_fire_resistance_6_00/index.html similarity index 100% rename from prerender/browse/minecraft/splash_potion_of_fire_resistance_6_00/index.html rename to static/browse/minecraft/splash_potion_of_fire_resistance_6_00/index.html diff --git a/src/data/minecraft/1.7.10/images/splash_potion_of_harming.png b/static/browse/minecraft/splash_potion_of_harming/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/splash_potion_of_harming.png rename to static/browse/minecraft/splash_potion_of_harming/icon.png diff --git a/prerender/browse/minecraft/splash_potion_of_harming/index.html b/static/browse/minecraft/splash_potion_of_harming/index.html similarity index 100% rename from prerender/browse/minecraft/splash_potion_of_harming/index.html rename to static/browse/minecraft/splash_potion_of_harming/index.html diff --git a/src/data/minecraft/1.7.10/images/splash_potion_of_harming_ii.png b/static/browse/minecraft/splash_potion_of_harming_ii/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/splash_potion_of_harming_ii.png rename to static/browse/minecraft/splash_potion_of_harming_ii/icon.png diff --git a/prerender/browse/minecraft/splash_potion_of_harming_ii/index.html b/static/browse/minecraft/splash_potion_of_harming_ii/index.html similarity index 100% rename from prerender/browse/minecraft/splash_potion_of_harming_ii/index.html rename to static/browse/minecraft/splash_potion_of_harming_ii/index.html diff --git a/src/data/minecraft/1.7.10/images/splash_potion_of_healing.png b/static/browse/minecraft/splash_potion_of_healing/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/splash_potion_of_healing.png rename to static/browse/minecraft/splash_potion_of_healing/icon.png diff --git a/prerender/browse/minecraft/splash_potion_of_healing/index.html b/static/browse/minecraft/splash_potion_of_healing/index.html similarity index 100% rename from prerender/browse/minecraft/splash_potion_of_healing/index.html rename to static/browse/minecraft/splash_potion_of_healing/index.html diff --git a/src/data/minecraft/1.7.10/images/splash_potion_of_healing_ii.png b/static/browse/minecraft/splash_potion_of_healing_ii/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/splash_potion_of_healing_ii.png rename to static/browse/minecraft/splash_potion_of_healing_ii/icon.png diff --git a/prerender/browse/minecraft/splash_potion_of_healing_ii/index.html b/static/browse/minecraft/splash_potion_of_healing_ii/index.html similarity index 100% rename from prerender/browse/minecraft/splash_potion_of_healing_ii/index.html rename to static/browse/minecraft/splash_potion_of_healing_ii/index.html diff --git a/src/data/minecraft/1.7.10/images/splash_potion_of_invisibility_2_15.png b/static/browse/minecraft/splash_potion_of_invisibility_2_15/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/splash_potion_of_invisibility_2_15.png rename to static/browse/minecraft/splash_potion_of_invisibility_2_15/icon.png diff --git a/prerender/browse/minecraft/splash_potion_of_invisibility_2_15/index.html b/static/browse/minecraft/splash_potion_of_invisibility_2_15/index.html similarity index 100% rename from prerender/browse/minecraft/splash_potion_of_invisibility_2_15/index.html rename to static/browse/minecraft/splash_potion_of_invisibility_2_15/index.html diff --git a/src/data/minecraft/1.7.10/images/splash_potion_of_invisibility_6_00.png b/static/browse/minecraft/splash_potion_of_invisibility_6_00/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/splash_potion_of_invisibility_6_00.png rename to static/browse/minecraft/splash_potion_of_invisibility_6_00/icon.png diff --git a/prerender/browse/minecraft/splash_potion_of_invisibility_6_00/index.html b/static/browse/minecraft/splash_potion_of_invisibility_6_00/index.html similarity index 100% rename from prerender/browse/minecraft/splash_potion_of_invisibility_6_00/index.html rename to static/browse/minecraft/splash_potion_of_invisibility_6_00/index.html diff --git a/src/data/minecraft/1.7.10/images/splash_potion_of_night_vision_2_15.png b/static/browse/minecraft/splash_potion_of_night_vision_2_15/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/splash_potion_of_night_vision_2_15.png rename to static/browse/minecraft/splash_potion_of_night_vision_2_15/icon.png diff --git a/prerender/browse/minecraft/splash_potion_of_night_vision_2_15/index.html b/static/browse/minecraft/splash_potion_of_night_vision_2_15/index.html similarity index 100% rename from prerender/browse/minecraft/splash_potion_of_night_vision_2_15/index.html rename to static/browse/minecraft/splash_potion_of_night_vision_2_15/index.html diff --git a/src/data/minecraft/1.7.10/images/splash_potion_of_night_vision_6_00.png b/static/browse/minecraft/splash_potion_of_night_vision_6_00/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/splash_potion_of_night_vision_6_00.png rename to static/browse/minecraft/splash_potion_of_night_vision_6_00/icon.png diff --git a/prerender/browse/minecraft/splash_potion_of_night_vision_6_00/index.html b/static/browse/minecraft/splash_potion_of_night_vision_6_00/index.html similarity index 100% rename from prerender/browse/minecraft/splash_potion_of_night_vision_6_00/index.html rename to static/browse/minecraft/splash_potion_of_night_vision_6_00/index.html diff --git a/src/data/minecraft/1.7.10/images/splash_potion_of_poison_0_33.png b/static/browse/minecraft/splash_potion_of_poison_0_33/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/splash_potion_of_poison_0_33.png rename to static/browse/minecraft/splash_potion_of_poison_0_33/icon.png diff --git a/prerender/browse/minecraft/splash_potion_of_poison_0_33/index.html b/static/browse/minecraft/splash_potion_of_poison_0_33/index.html similarity index 100% rename from prerender/browse/minecraft/splash_potion_of_poison_0_33/index.html rename to static/browse/minecraft/splash_potion_of_poison_0_33/index.html diff --git a/src/data/minecraft/1.7.10/images/splash_potion_of_poison_1_30.png b/static/browse/minecraft/splash_potion_of_poison_1_30/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/splash_potion_of_poison_1_30.png rename to static/browse/minecraft/splash_potion_of_poison_1_30/icon.png diff --git a/prerender/browse/minecraft/splash_potion_of_poison_1_30/index.html b/static/browse/minecraft/splash_potion_of_poison_1_30/index.html similarity index 100% rename from prerender/browse/minecraft/splash_potion_of_poison_1_30/index.html rename to static/browse/minecraft/splash_potion_of_poison_1_30/index.html diff --git a/src/data/minecraft/1.7.10/images/splash_potion_of_poison_ii_0_16.png b/static/browse/minecraft/splash_potion_of_poison_ii_0_16/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/splash_potion_of_poison_ii_0_16.png rename to static/browse/minecraft/splash_potion_of_poison_ii_0_16/icon.png diff --git a/prerender/browse/minecraft/splash_potion_of_poison_ii_0_16/index.html b/static/browse/minecraft/splash_potion_of_poison_ii_0_16/index.html similarity index 100% rename from prerender/browse/minecraft/splash_potion_of_poison_ii_0_16/index.html rename to static/browse/minecraft/splash_potion_of_poison_ii_0_16/index.html diff --git a/src/data/minecraft/1.7.10/images/splash_potion_of_regeneration_0_33.png b/static/browse/minecraft/splash_potion_of_regeneration_0_33/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/splash_potion_of_regeneration_0_33.png rename to static/browse/minecraft/splash_potion_of_regeneration_0_33/icon.png diff --git a/prerender/browse/minecraft/splash_potion_of_regeneration_0_33/index.html b/static/browse/minecraft/splash_potion_of_regeneration_0_33/index.html similarity index 100% rename from prerender/browse/minecraft/splash_potion_of_regeneration_0_33/index.html rename to static/browse/minecraft/splash_potion_of_regeneration_0_33/index.html diff --git a/src/data/minecraft/1.7.10/images/splash_potion_of_regeneration_1_30.png b/static/browse/minecraft/splash_potion_of_regeneration_1_30/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/splash_potion_of_regeneration_1_30.png rename to static/browse/minecraft/splash_potion_of_regeneration_1_30/icon.png diff --git a/prerender/browse/minecraft/splash_potion_of_regeneration_1_30/index.html b/static/browse/minecraft/splash_potion_of_regeneration_1_30/index.html similarity index 100% rename from prerender/browse/minecraft/splash_potion_of_regeneration_1_30/index.html rename to static/browse/minecraft/splash_potion_of_regeneration_1_30/index.html diff --git a/src/data/minecraft/1.7.10/images/splash_potion_of_regeneration_ii_0_16.png b/static/browse/minecraft/splash_potion_of_regeneration_ii_0_16/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/splash_potion_of_regeneration_ii_0_16.png rename to static/browse/minecraft/splash_potion_of_regeneration_ii_0_16/icon.png diff --git a/prerender/browse/minecraft/splash_potion_of_regeneration_ii_0_16/index.html b/static/browse/minecraft/splash_potion_of_regeneration_ii_0_16/index.html similarity index 100% rename from prerender/browse/minecraft/splash_potion_of_regeneration_ii_0_16/index.html rename to static/browse/minecraft/splash_potion_of_regeneration_ii_0_16/index.html diff --git a/src/data/minecraft/1.7.10/images/splash_potion_of_slowness_1_07.png b/static/browse/minecraft/splash_potion_of_slowness_1_07/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/splash_potion_of_slowness_1_07.png rename to static/browse/minecraft/splash_potion_of_slowness_1_07/icon.png diff --git a/prerender/browse/minecraft/splash_potion_of_slowness_1_07/index.html b/static/browse/minecraft/splash_potion_of_slowness_1_07/index.html similarity index 100% rename from prerender/browse/minecraft/splash_potion_of_slowness_1_07/index.html rename to static/browse/minecraft/splash_potion_of_slowness_1_07/index.html diff --git a/src/data/minecraft/1.7.10/images/splash_potion_of_slowness_3_00.png b/static/browse/minecraft/splash_potion_of_slowness_3_00/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/splash_potion_of_slowness_3_00.png rename to static/browse/minecraft/splash_potion_of_slowness_3_00/icon.png diff --git a/prerender/browse/minecraft/splash_potion_of_slowness_3_00/index.html b/static/browse/minecraft/splash_potion_of_slowness_3_00/index.html similarity index 100% rename from prerender/browse/minecraft/splash_potion_of_slowness_3_00/index.html rename to static/browse/minecraft/splash_potion_of_slowness_3_00/index.html diff --git a/src/data/minecraft/1.7.10/images/splash_potion_of_strength_2_15.png b/static/browse/minecraft/splash_potion_of_strength_2_15/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/splash_potion_of_strength_2_15.png rename to static/browse/minecraft/splash_potion_of_strength_2_15/icon.png diff --git a/prerender/browse/minecraft/splash_potion_of_strength_2_15/index.html b/static/browse/minecraft/splash_potion_of_strength_2_15/index.html similarity index 100% rename from prerender/browse/minecraft/splash_potion_of_strength_2_15/index.html rename to static/browse/minecraft/splash_potion_of_strength_2_15/index.html diff --git a/src/data/minecraft/1.7.10/images/splash_potion_of_strength_6_00.png b/static/browse/minecraft/splash_potion_of_strength_6_00/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/splash_potion_of_strength_6_00.png rename to static/browse/minecraft/splash_potion_of_strength_6_00/icon.png diff --git a/prerender/browse/minecraft/splash_potion_of_strength_6_00/index.html b/static/browse/minecraft/splash_potion_of_strength_6_00/index.html similarity index 100% rename from prerender/browse/minecraft/splash_potion_of_strength_6_00/index.html rename to static/browse/minecraft/splash_potion_of_strength_6_00/index.html diff --git a/src/data/minecraft/1.7.10/images/splash_potion_of_strength_ii_1_07.png b/static/browse/minecraft/splash_potion_of_strength_ii_1_07/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/splash_potion_of_strength_ii_1_07.png rename to static/browse/minecraft/splash_potion_of_strength_ii_1_07/icon.png diff --git a/prerender/browse/minecraft/splash_potion_of_strength_ii_1_07/index.html b/static/browse/minecraft/splash_potion_of_strength_ii_1_07/index.html similarity index 100% rename from prerender/browse/minecraft/splash_potion_of_strength_ii_1_07/index.html rename to static/browse/minecraft/splash_potion_of_strength_ii_1_07/index.html diff --git a/src/data/minecraft/1.7.10/images/splash_potion_of_swiftness_2_15.png b/static/browse/minecraft/splash_potion_of_swiftness_2_15/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/splash_potion_of_swiftness_2_15.png rename to static/browse/minecraft/splash_potion_of_swiftness_2_15/icon.png diff --git a/prerender/browse/minecraft/splash_potion_of_swiftness_2_15/index.html b/static/browse/minecraft/splash_potion_of_swiftness_2_15/index.html similarity index 100% rename from prerender/browse/minecraft/splash_potion_of_swiftness_2_15/index.html rename to static/browse/minecraft/splash_potion_of_swiftness_2_15/index.html diff --git a/src/data/minecraft/1.7.10/images/splash_potion_of_swiftness_6_00.png b/static/browse/minecraft/splash_potion_of_swiftness_6_00/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/splash_potion_of_swiftness_6_00.png rename to static/browse/minecraft/splash_potion_of_swiftness_6_00/icon.png diff --git a/prerender/browse/minecraft/splash_potion_of_swiftness_6_00/index.html b/static/browse/minecraft/splash_potion_of_swiftness_6_00/index.html similarity index 100% rename from prerender/browse/minecraft/splash_potion_of_swiftness_6_00/index.html rename to static/browse/minecraft/splash_potion_of_swiftness_6_00/index.html diff --git a/src/data/minecraft/1.7.10/images/splash_potion_of_swiftness_ii_1_07.png b/static/browse/minecraft/splash_potion_of_swiftness_ii_1_07/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/splash_potion_of_swiftness_ii_1_07.png rename to static/browse/minecraft/splash_potion_of_swiftness_ii_1_07/icon.png diff --git a/prerender/browse/minecraft/splash_potion_of_swiftness_ii_1_07/index.html b/static/browse/minecraft/splash_potion_of_swiftness_ii_1_07/index.html similarity index 100% rename from prerender/browse/minecraft/splash_potion_of_swiftness_ii_1_07/index.html rename to static/browse/minecraft/splash_potion_of_swiftness_ii_1_07/index.html diff --git a/src/data/minecraft/1.7.10/images/splash_potion_of_water_breathing_2_15.png b/static/browse/minecraft/splash_potion_of_water_breathing_2_15/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/splash_potion_of_water_breathing_2_15.png rename to static/browse/minecraft/splash_potion_of_water_breathing_2_15/icon.png diff --git a/prerender/browse/minecraft/splash_potion_of_water_breathing_2_15/index.html b/static/browse/minecraft/splash_potion_of_water_breathing_2_15/index.html similarity index 100% rename from prerender/browse/minecraft/splash_potion_of_water_breathing_2_15/index.html rename to static/browse/minecraft/splash_potion_of_water_breathing_2_15/index.html diff --git a/src/data/minecraft/1.7.10/images/splash_potion_of_water_breathing_6_00.png b/static/browse/minecraft/splash_potion_of_water_breathing_6_00/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/splash_potion_of_water_breathing_6_00.png rename to static/browse/minecraft/splash_potion_of_water_breathing_6_00/icon.png diff --git a/prerender/browse/minecraft/splash_potion_of_water_breathing_6_00/index.html b/static/browse/minecraft/splash_potion_of_water_breathing_6_00/index.html similarity index 100% rename from prerender/browse/minecraft/splash_potion_of_water_breathing_6_00/index.html rename to static/browse/minecraft/splash_potion_of_water_breathing_6_00/index.html diff --git a/src/data/minecraft/1.7.10/images/splash_potion_of_weakness_1_07.png b/static/browse/minecraft/splash_potion_of_weakness_1_07/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/splash_potion_of_weakness_1_07.png rename to static/browse/minecraft/splash_potion_of_weakness_1_07/icon.png diff --git a/prerender/browse/minecraft/splash_potion_of_weakness_1_07/index.html b/static/browse/minecraft/splash_potion_of_weakness_1_07/index.html similarity index 100% rename from prerender/browse/minecraft/splash_potion_of_weakness_1_07/index.html rename to static/browse/minecraft/splash_potion_of_weakness_1_07/index.html diff --git a/src/data/minecraft/1.7.10/images/splash_potion_of_weakness_3_00.png b/static/browse/minecraft/splash_potion_of_weakness_3_00/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/splash_potion_of_weakness_3_00.png rename to static/browse/minecraft/splash_potion_of_weakness_3_00/icon.png diff --git a/prerender/browse/minecraft/splash_potion_of_weakness_3_00/index.html b/static/browse/minecraft/splash_potion_of_weakness_3_00/index.html similarity index 100% rename from prerender/browse/minecraft/splash_potion_of_weakness_3_00/index.html rename to static/browse/minecraft/splash_potion_of_weakness_3_00/index.html diff --git a/src/data/minecraft/1.7.10/images/sponge.png b/static/browse/minecraft/sponge/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/sponge.png rename to static/browse/minecraft/sponge/icon.png diff --git a/prerender/browse/minecraft/sponge/index.html b/static/browse/minecraft/sponge/index.html similarity index 100% rename from prerender/browse/minecraft/sponge/index.html rename to static/browse/minecraft/sponge/index.html diff --git a/src/data/minecraft/1.7.10/images/spruce_leaves.png b/static/browse/minecraft/spruce_leaves/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/spruce_leaves.png rename to static/browse/minecraft/spruce_leaves/icon.png diff --git a/prerender/browse/minecraft/spruce_leaves/index.html b/static/browse/minecraft/spruce_leaves/index.html similarity index 100% rename from prerender/browse/minecraft/spruce_leaves/index.html rename to static/browse/minecraft/spruce_leaves/index.html diff --git a/src/data/minecraft/1.7.10/images/spruce_sapling.png b/static/browse/minecraft/spruce_sapling/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/spruce_sapling.png rename to static/browse/minecraft/spruce_sapling/icon.png diff --git a/prerender/browse/minecraft/spruce_sapling/index.html b/static/browse/minecraft/spruce_sapling/index.html similarity index 100% rename from prerender/browse/minecraft/spruce_sapling/index.html rename to static/browse/minecraft/spruce_sapling/index.html diff --git a/src/data/minecraft/1.7.10/images/spruce_wood.png b/static/browse/minecraft/spruce_wood/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/spruce_wood.png rename to static/browse/minecraft/spruce_wood/icon.png diff --git a/prerender/browse/minecraft/spruce_wood/index.html b/static/browse/minecraft/spruce_wood/index.html similarity index 100% rename from prerender/browse/minecraft/spruce_wood/index.html rename to static/browse/minecraft/spruce_wood/index.html diff --git a/src/data/minecraft/1.7.10/images/spruce_wood_planks.png b/static/browse/minecraft/spruce_wood_planks/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/spruce_wood_planks.png rename to static/browse/minecraft/spruce_wood_planks/icon.png diff --git a/prerender/browse/minecraft/spruce_wood_planks/index.html b/static/browse/minecraft/spruce_wood_planks/index.html similarity index 100% rename from prerender/browse/minecraft/spruce_wood_planks/index.html rename to static/browse/minecraft/spruce_wood_planks/index.html diff --git a/src/data/minecraft/1.7.10/images/spruce_wood_slab.png b/static/browse/minecraft/spruce_wood_slab/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/spruce_wood_slab.png rename to static/browse/minecraft/spruce_wood_slab/icon.png diff --git a/prerender/browse/minecraft/spruce_wood_slab/index.html b/static/browse/minecraft/spruce_wood_slab/index.html similarity index 100% rename from prerender/browse/minecraft/spruce_wood_slab/index.html rename to static/browse/minecraft/spruce_wood_slab/index.html diff --git a/src/data/minecraft/1.7.10/images/spruce_wood_stairs.png b/static/browse/minecraft/spruce_wood_stairs/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/spruce_wood_stairs.png rename to static/browse/minecraft/spruce_wood_stairs/icon.png diff --git a/prerender/browse/minecraft/spruce_wood_stairs/index.html b/static/browse/minecraft/spruce_wood_stairs/index.html similarity index 100% rename from prerender/browse/minecraft/spruce_wood_stairs/index.html rename to static/browse/minecraft/spruce_wood_stairs/index.html diff --git a/src/data/minecraft/1.7.10/images/steak.png b/static/browse/minecraft/steak/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/steak.png rename to static/browse/minecraft/steak/icon.png diff --git a/prerender/browse/minecraft/steak/index.html b/static/browse/minecraft/steak/index.html similarity index 100% rename from prerender/browse/minecraft/steak/index.html rename to static/browse/minecraft/steak/index.html diff --git a/src/data/minecraft/1.7.10/images/stick.png b/static/browse/minecraft/stick/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/stick.png rename to static/browse/minecraft/stick/icon.png diff --git a/prerender/browse/minecraft/stick/index.html b/static/browse/minecraft/stick/index.html similarity index 100% rename from prerender/browse/minecraft/stick/index.html rename to static/browse/minecraft/stick/index.html diff --git a/src/data/minecraft/1.7.10/images/sticky_piston.png b/static/browse/minecraft/sticky_piston/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/sticky_piston.png rename to static/browse/minecraft/sticky_piston/icon.png diff --git a/prerender/browse/minecraft/sticky_piston/index.html b/static/browse/minecraft/sticky_piston/index.html similarity index 100% rename from prerender/browse/minecraft/sticky_piston/index.html rename to static/browse/minecraft/sticky_piston/index.html diff --git a/src/data/minecraft/1.7.10/images/stone.png b/static/browse/minecraft/stone/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/stone.png rename to static/browse/minecraft/stone/icon.png diff --git a/prerender/browse/minecraft/stone/index.html b/static/browse/minecraft/stone/index.html similarity index 100% rename from prerender/browse/minecraft/stone/index.html rename to static/browse/minecraft/stone/index.html diff --git a/src/data/minecraft/1.7.10/images/stone_axe.png b/static/browse/minecraft/stone_axe/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/stone_axe.png rename to static/browse/minecraft/stone_axe/icon.png diff --git a/prerender/browse/minecraft/stone_axe/index.html b/static/browse/minecraft/stone_axe/index.html similarity index 100% rename from prerender/browse/minecraft/stone_axe/index.html rename to static/browse/minecraft/stone_axe/index.html diff --git a/src/data/minecraft/1.7.10/images/stone_brick_monster_egg.png b/static/browse/minecraft/stone_brick_monster_egg/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/stone_brick_monster_egg.png rename to static/browse/minecraft/stone_brick_monster_egg/icon.png diff --git a/src/data/minecraft/1.7.10/images/stone_brick_stairs.png b/static/browse/minecraft/stone_brick_stairs/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/stone_brick_stairs.png rename to static/browse/minecraft/stone_brick_stairs/icon.png diff --git a/prerender/browse/minecraft/stone_brick_stairs/index.html b/static/browse/minecraft/stone_brick_stairs/index.html similarity index 100% rename from prerender/browse/minecraft/stone_brick_stairs/index.html rename to static/browse/minecraft/stone_brick_stairs/index.html diff --git a/src/data/minecraft/1.7.10/images/stone_bricks.png b/static/browse/minecraft/stone_bricks/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/stone_bricks.png rename to static/browse/minecraft/stone_bricks/icon.png diff --git a/prerender/browse/minecraft/stone_bricks/index.html b/static/browse/minecraft/stone_bricks/index.html similarity index 100% rename from prerender/browse/minecraft/stone_bricks/index.html rename to static/browse/minecraft/stone_bricks/index.html diff --git a/src/data/minecraft/1.7.10/images/stone_bricks_slab.png b/static/browse/minecraft/stone_bricks_slab/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/stone_bricks_slab.png rename to static/browse/minecraft/stone_bricks_slab/icon.png diff --git a/prerender/browse/minecraft/stone_bricks_slab/index.html b/static/browse/minecraft/stone_bricks_slab/index.html similarity index 100% rename from prerender/browse/minecraft/stone_bricks_slab/index.html rename to static/browse/minecraft/stone_bricks_slab/index.html diff --git a/src/data/minecraft/1.7.10/images/stone_hoe.png b/static/browse/minecraft/stone_hoe/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/stone_hoe.png rename to static/browse/minecraft/stone_hoe/icon.png diff --git a/prerender/browse/minecraft/stone_hoe/index.html b/static/browse/minecraft/stone_hoe/index.html similarity index 100% rename from prerender/browse/minecraft/stone_hoe/index.html rename to static/browse/minecraft/stone_hoe/index.html diff --git a/src/data/minecraft/1.7.10/images/stone_monster_egg.png b/static/browse/minecraft/stone_monster_egg/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/stone_monster_egg.png rename to static/browse/minecraft/stone_monster_egg/icon.png diff --git a/src/data/minecraft/1.7.10/images/stone_pickaxe.png b/static/browse/minecraft/stone_pickaxe/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/stone_pickaxe.png rename to static/browse/minecraft/stone_pickaxe/icon.png diff --git a/prerender/browse/minecraft/stone_pickaxe/index.html b/static/browse/minecraft/stone_pickaxe/index.html similarity index 100% rename from prerender/browse/minecraft/stone_pickaxe/index.html rename to static/browse/minecraft/stone_pickaxe/index.html diff --git a/src/data/minecraft/1.7.10/images/stone_shovel.png b/static/browse/minecraft/stone_shovel/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/stone_shovel.png rename to static/browse/minecraft/stone_shovel/icon.png diff --git a/prerender/browse/minecraft/stone_shovel/index.html b/static/browse/minecraft/stone_shovel/index.html similarity index 100% rename from prerender/browse/minecraft/stone_shovel/index.html rename to static/browse/minecraft/stone_shovel/index.html diff --git a/src/data/minecraft/1.7.10/images/stone_slab.png b/static/browse/minecraft/stone_slab/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/stone_slab.png rename to static/browse/minecraft/stone_slab/icon.png diff --git a/prerender/browse/minecraft/stone_slab/index.html b/static/browse/minecraft/stone_slab/index.html similarity index 100% rename from prerender/browse/minecraft/stone_slab/index.html rename to static/browse/minecraft/stone_slab/index.html diff --git a/src/data/minecraft/1.7.10/images/stone_stairs.png b/static/browse/minecraft/stone_stairs/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/stone_stairs.png rename to static/browse/minecraft/stone_stairs/icon.png diff --git a/prerender/browse/minecraft/stone_stairs/index.html b/static/browse/minecraft/stone_stairs/index.html similarity index 100% rename from prerender/browse/minecraft/stone_stairs/index.html rename to static/browse/minecraft/stone_stairs/index.html diff --git a/src/data/minecraft/1.7.10/images/stone_sword.png b/static/browse/minecraft/stone_sword/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/stone_sword.png rename to static/browse/minecraft/stone_sword/icon.png diff --git a/prerender/browse/minecraft/stone_sword/index.html b/static/browse/minecraft/stone_sword/index.html similarity index 100% rename from prerender/browse/minecraft/stone_sword/index.html rename to static/browse/minecraft/stone_sword/index.html diff --git a/src/data/minecraft/1.7.10/images/string.png b/static/browse/minecraft/string/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/string.png rename to static/browse/minecraft/string/icon.png diff --git a/prerender/browse/minecraft/string/index.html b/static/browse/minecraft/string/index.html similarity index 100% rename from prerender/browse/minecraft/string/index.html rename to static/browse/minecraft/string/index.html diff --git a/src/data/minecraft/1.7.10/images/sugar.png b/static/browse/minecraft/sugar/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/sugar.png rename to static/browse/minecraft/sugar/icon.png diff --git a/prerender/browse/minecraft/sugar/index.html b/static/browse/minecraft/sugar/index.html similarity index 100% rename from prerender/browse/minecraft/sugar/index.html rename to static/browse/minecraft/sugar/index.html diff --git a/src/data/minecraft/1.7.10/images/sugar_canes.png b/static/browse/minecraft/sugar_canes/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/sugar_canes.png rename to static/browse/minecraft/sugar_canes/icon.png diff --git a/prerender/browse/minecraft/sugar_canes/index.html b/static/browse/minecraft/sugar_canes/index.html similarity index 100% rename from prerender/browse/minecraft/sugar_canes/index.html rename to static/browse/minecraft/sugar_canes/index.html diff --git a/src/data/minecraft/1.7.10/images/sunflower.png b/static/browse/minecraft/sunflower/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/sunflower.png rename to static/browse/minecraft/sunflower/icon.png diff --git a/prerender/browse/minecraft/sunflower/index.html b/static/browse/minecraft/sunflower/index.html similarity index 100% rename from prerender/browse/minecraft/sunflower/index.html rename to static/browse/minecraft/sunflower/index.html diff --git a/src/data/minecraft/1.7.10/images/thick_potion.png b/static/browse/minecraft/thick_potion/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/thick_potion.png rename to static/browse/minecraft/thick_potion/icon.png diff --git a/prerender/browse/minecraft/thick_potion/index.html b/static/browse/minecraft/thick_potion/index.html similarity index 100% rename from prerender/browse/minecraft/thick_potion/index.html rename to static/browse/minecraft/thick_potion/index.html diff --git a/src/data/minecraft/1.7.10/images/tnt.png b/static/browse/minecraft/tnt/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/tnt.png rename to static/browse/minecraft/tnt/icon.png diff --git a/prerender/browse/minecraft/tnt/index.html b/static/browse/minecraft/tnt/index.html similarity index 100% rename from prerender/browse/minecraft/tnt/index.html rename to static/browse/minecraft/tnt/index.html diff --git a/src/data/minecraft/1.7.10/images/torch.png b/static/browse/minecraft/torch/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/torch.png rename to static/browse/minecraft/torch/icon.png diff --git a/prerender/browse/minecraft/torch/index.html b/static/browse/minecraft/torch/index.html similarity index 100% rename from prerender/browse/minecraft/torch/index.html rename to static/browse/minecraft/torch/index.html diff --git a/src/data/minecraft/1.7.10/images/trapdoor.png b/static/browse/minecraft/trapdoor/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/trapdoor.png rename to static/browse/minecraft/trapdoor/icon.png diff --git a/prerender/browse/minecraft/trapdoor/index.html b/static/browse/minecraft/trapdoor/index.html similarity index 100% rename from prerender/browse/minecraft/trapdoor/index.html rename to static/browse/minecraft/trapdoor/index.html diff --git a/src/data/minecraft/1.7.10/images/trapped_chest.png b/static/browse/minecraft/trapped_chest/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/trapped_chest.png rename to static/browse/minecraft/trapped_chest/icon.png diff --git a/prerender/browse/minecraft/trapped_chest/index.html b/static/browse/minecraft/trapped_chest/index.html similarity index 100% rename from prerender/browse/minecraft/trapped_chest/index.html rename to static/browse/minecraft/trapped_chest/index.html diff --git a/src/data/minecraft/1.7.10/images/tripwire_hook.png b/static/browse/minecraft/tripwire_hook/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/tripwire_hook.png rename to static/browse/minecraft/tripwire_hook/icon.png diff --git a/prerender/browse/minecraft/tripwire_hook/index.html b/static/browse/minecraft/tripwire_hook/index.html similarity index 100% rename from prerender/browse/minecraft/tripwire_hook/index.html rename to static/browse/minecraft/tripwire_hook/index.html diff --git a/src/data/minecraft/1.7.10/images/very_damaged_anvil.png b/static/browse/minecraft/very_damaged_anvil/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/very_damaged_anvil.png rename to static/browse/minecraft/very_damaged_anvil/icon.png diff --git a/src/data/minecraft/1.7.10/images/vines.png b/static/browse/minecraft/vines/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/vines.png rename to static/browse/minecraft/vines/icon.png diff --git a/prerender/browse/minecraft/vines/index.html b/static/browse/minecraft/vines/index.html similarity index 100% rename from prerender/browse/minecraft/vines/index.html rename to static/browse/minecraft/vines/index.html diff --git a/src/data/minecraft/1.7.10/images/water.png b/static/browse/minecraft/water/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/water.png rename to static/browse/minecraft/water/icon.png diff --git a/prerender/browse/minecraft/water/index.html b/static/browse/minecraft/water/index.html similarity index 100% rename from prerender/browse/minecraft/water/index.html rename to static/browse/minecraft/water/index.html diff --git a/src/data/minecraft/1.7.10/images/water_bottle.png b/static/browse/minecraft/water_bottle/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/water_bottle.png rename to static/browse/minecraft/water_bottle/icon.png diff --git a/prerender/browse/minecraft/water_bottle/index.html b/static/browse/minecraft/water_bottle/index.html similarity index 100% rename from prerender/browse/minecraft/water_bottle/index.html rename to static/browse/minecraft/water_bottle/index.html diff --git a/src/data/minecraft/1.7.10/images/water_bucket.png b/static/browse/minecraft/water_bucket/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/water_bucket.png rename to static/browse/minecraft/water_bucket/icon.png diff --git a/prerender/browse/minecraft/water_bucket/index.html b/static/browse/minecraft/water_bucket/index.html similarity index 100% rename from prerender/browse/minecraft/water_bucket/index.html rename to static/browse/minecraft/water_bucket/index.html diff --git a/src/data/minecraft/1.7.10/images/weighted_pressure_plate_heavy.png b/static/browse/minecraft/weighted_pressure_plate_heavy/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/weighted_pressure_plate_heavy.png rename to static/browse/minecraft/weighted_pressure_plate_heavy/icon.png diff --git a/prerender/browse/minecraft/weighted_pressure_plate_heavy/index.html b/static/browse/minecraft/weighted_pressure_plate_heavy/index.html similarity index 100% rename from prerender/browse/minecraft/weighted_pressure_plate_heavy/index.html rename to static/browse/minecraft/weighted_pressure_plate_heavy/index.html diff --git a/src/data/minecraft/1.7.10/images/weighted_pressure_plate_light.png b/static/browse/minecraft/weighted_pressure_plate_light/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/weighted_pressure_plate_light.png rename to static/browse/minecraft/weighted_pressure_plate_light/icon.png diff --git a/prerender/browse/minecraft/weighted_pressure_plate_light/index.html b/static/browse/minecraft/weighted_pressure_plate_light/index.html similarity index 100% rename from prerender/browse/minecraft/weighted_pressure_plate_light/index.html rename to static/browse/minecraft/weighted_pressure_plate_light/index.html diff --git a/src/data/minecraft/1.7.10/images/wheat.png b/static/browse/minecraft/wheat/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/wheat.png rename to static/browse/minecraft/wheat/icon.png diff --git a/prerender/browse/minecraft/wheat/index.html b/static/browse/minecraft/wheat/index.html similarity index 100% rename from prerender/browse/minecraft/wheat/index.html rename to static/browse/minecraft/wheat/index.html diff --git a/src/data/minecraft/1.7.10/images/white_stained_clay.png b/static/browse/minecraft/white_stained_clay/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/white_stained_clay.png rename to static/browse/minecraft/white_stained_clay/icon.png diff --git a/prerender/browse/minecraft/white_stained_clay/index.html b/static/browse/minecraft/white_stained_clay/index.html similarity index 100% rename from prerender/browse/minecraft/white_stained_clay/index.html rename to static/browse/minecraft/white_stained_clay/index.html diff --git a/src/data/minecraft/1.7.10/images/white_stained_glass.png b/static/browse/minecraft/white_stained_glass/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/white_stained_glass.png rename to static/browse/minecraft/white_stained_glass/icon.png diff --git a/prerender/browse/minecraft/white_stained_glass/index.html b/static/browse/minecraft/white_stained_glass/index.html similarity index 100% rename from prerender/browse/minecraft/white_stained_glass/index.html rename to static/browse/minecraft/white_stained_glass/index.html diff --git a/src/data/minecraft/1.7.10/images/white_stained_glass_pane.png b/static/browse/minecraft/white_stained_glass_pane/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/white_stained_glass_pane.png rename to static/browse/minecraft/white_stained_glass_pane/icon.png diff --git a/prerender/browse/minecraft/white_stained_glass_pane/index.html b/static/browse/minecraft/white_stained_glass_pane/index.html similarity index 100% rename from prerender/browse/minecraft/white_stained_glass_pane/index.html rename to static/browse/minecraft/white_stained_glass_pane/index.html diff --git a/src/data/minecraft/1.7.10/images/white_tulip.png b/static/browse/minecraft/white_tulip/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/white_tulip.png rename to static/browse/minecraft/white_tulip/icon.png diff --git a/prerender/browse/minecraft/white_tulip/index.html b/static/browse/minecraft/white_tulip/index.html similarity index 100% rename from prerender/browse/minecraft/white_tulip/index.html rename to static/browse/minecraft/white_tulip/index.html diff --git a/src/data/minecraft/1.7.10/images/wither_skeleton_skull.png b/static/browse/minecraft/wither_skeleton_skull/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/wither_skeleton_skull.png rename to static/browse/minecraft/wither_skeleton_skull/icon.png diff --git a/prerender/browse/minecraft/wither_skeleton_skull/index.html b/static/browse/minecraft/wither_skeleton_skull/index.html similarity index 100% rename from prerender/browse/minecraft/wither_skeleton_skull/index.html rename to static/browse/minecraft/wither_skeleton_skull/index.html diff --git a/src/data/minecraft/1.7.10/images/wooden_axe.png b/static/browse/minecraft/wooden_axe/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/wooden_axe.png rename to static/browse/minecraft/wooden_axe/icon.png diff --git a/prerender/browse/minecraft/wooden_axe/index.html b/static/browse/minecraft/wooden_axe/index.html similarity index 100% rename from prerender/browse/minecraft/wooden_axe/index.html rename to static/browse/minecraft/wooden_axe/index.html diff --git a/src/data/minecraft/1.7.10/images/wooden_door.png b/static/browse/minecraft/wooden_door/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/wooden_door.png rename to static/browse/minecraft/wooden_door/icon.png diff --git a/prerender/browse/minecraft/wooden_door/index.html b/static/browse/minecraft/wooden_door/index.html similarity index 100% rename from prerender/browse/minecraft/wooden_door/index.html rename to static/browse/minecraft/wooden_door/index.html diff --git a/src/data/minecraft/1.7.10/images/wooden_hoe.png b/static/browse/minecraft/wooden_hoe/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/wooden_hoe.png rename to static/browse/minecraft/wooden_hoe/icon.png diff --git a/prerender/browse/minecraft/wooden_hoe/index.html b/static/browse/minecraft/wooden_hoe/index.html similarity index 100% rename from prerender/browse/minecraft/wooden_hoe/index.html rename to static/browse/minecraft/wooden_hoe/index.html diff --git a/src/data/minecraft/1.7.10/images/wooden_pickaxe.png b/static/browse/minecraft/wooden_pickaxe/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/wooden_pickaxe.png rename to static/browse/minecraft/wooden_pickaxe/icon.png diff --git a/prerender/browse/minecraft/wooden_pickaxe/index.html b/static/browse/minecraft/wooden_pickaxe/index.html similarity index 100% rename from prerender/browse/minecraft/wooden_pickaxe/index.html rename to static/browse/minecraft/wooden_pickaxe/index.html diff --git a/src/data/minecraft/1.7.10/images/wooden_shovel.png b/static/browse/minecraft/wooden_shovel/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/wooden_shovel.png rename to static/browse/minecraft/wooden_shovel/icon.png diff --git a/prerender/browse/minecraft/wooden_shovel/index.html b/static/browse/minecraft/wooden_shovel/index.html similarity index 100% rename from prerender/browse/minecraft/wooden_shovel/index.html rename to static/browse/minecraft/wooden_shovel/index.html diff --git a/src/data/minecraft/1.7.10/images/wooden_sword.png b/static/browse/minecraft/wooden_sword/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/wooden_sword.png rename to static/browse/minecraft/wooden_sword/icon.png diff --git a/prerender/browse/minecraft/wooden_sword/index.html b/static/browse/minecraft/wooden_sword/index.html similarity index 100% rename from prerender/browse/minecraft/wooden_sword/index.html rename to static/browse/minecraft/wooden_sword/index.html diff --git a/src/data/minecraft/1.7.10/images/wool.png b/static/browse/minecraft/wool/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/wool.png rename to static/browse/minecraft/wool/icon.png diff --git a/prerender/browse/minecraft/wool/index.html b/static/browse/minecraft/wool/index.html similarity index 100% rename from prerender/browse/minecraft/wool/index.html rename to static/browse/minecraft/wool/index.html diff --git a/src/data/minecraft/1.7.10/images/written_book.png b/static/browse/minecraft/written_book/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/written_book.png rename to static/browse/minecraft/written_book/icon.png diff --git a/prerender/browse/minecraft/written_book/index.html b/static/browse/minecraft/written_book/index.html similarity index 100% rename from prerender/browse/minecraft/written_book/index.html rename to static/browse/minecraft/written_book/index.html diff --git a/src/data/minecraft/1.7.10/images/yellow_carpet.png b/static/browse/minecraft/yellow_carpet/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/yellow_carpet.png rename to static/browse/minecraft/yellow_carpet/icon.png diff --git a/prerender/browse/minecraft/yellow_carpet/index.html b/static/browse/minecraft/yellow_carpet/index.html similarity index 100% rename from prerender/browse/minecraft/yellow_carpet/index.html rename to static/browse/minecraft/yellow_carpet/index.html diff --git a/src/data/minecraft/1.7.10/images/yellow_stained_clay.png b/static/browse/minecraft/yellow_stained_clay/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/yellow_stained_clay.png rename to static/browse/minecraft/yellow_stained_clay/icon.png diff --git a/prerender/browse/minecraft/yellow_stained_clay/index.html b/static/browse/minecraft/yellow_stained_clay/index.html similarity index 100% rename from prerender/browse/minecraft/yellow_stained_clay/index.html rename to static/browse/minecraft/yellow_stained_clay/index.html diff --git a/src/data/minecraft/1.7.10/images/yellow_stained_glass.png b/static/browse/minecraft/yellow_stained_glass/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/yellow_stained_glass.png rename to static/browse/minecraft/yellow_stained_glass/icon.png diff --git a/prerender/browse/minecraft/yellow_stained_glass/index.html b/static/browse/minecraft/yellow_stained_glass/index.html similarity index 100% rename from prerender/browse/minecraft/yellow_stained_glass/index.html rename to static/browse/minecraft/yellow_stained_glass/index.html diff --git a/src/data/minecraft/1.7.10/images/yellow_stained_glass_pane.png b/static/browse/minecraft/yellow_stained_glass_pane/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/yellow_stained_glass_pane.png rename to static/browse/minecraft/yellow_stained_glass_pane/icon.png diff --git a/prerender/browse/minecraft/yellow_stained_glass_pane/index.html b/static/browse/minecraft/yellow_stained_glass_pane/index.html similarity index 100% rename from prerender/browse/minecraft/yellow_stained_glass_pane/index.html rename to static/browse/minecraft/yellow_stained_glass_pane/index.html diff --git a/src/data/minecraft/1.7.10/images/yellow_wool.png b/static/browse/minecraft/yellow_wool/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/yellow_wool.png rename to static/browse/minecraft/yellow_wool/icon.png diff --git a/prerender/browse/minecraft/yellow_wool/index.html b/static/browse/minecraft/yellow_wool/index.html similarity index 100% rename from prerender/browse/minecraft/yellow_wool/index.html rename to static/browse/minecraft/yellow_wool/index.html diff --git a/src/data/minecraft/1.7.10/images/zombie_head.png b/static/browse/minecraft/zombie_head/icon.png similarity index 100% rename from src/data/minecraft/1.7.10/images/zombie_head.png rename to static/browse/minecraft/zombie_head/icon.png diff --git a/prerender/browse/minecraft/zombie_head/index.html b/static/browse/minecraft/zombie_head/index.html similarity index 100% rename from prerender/browse/minecraft/zombie_head/index.html rename to static/browse/minecraft/zombie_head/index.html diff --git a/src/data/railcraft/9.5.0/images/1000mb_creosote_oil.png b/static/browse/railcraft/1000mb_creosote_oil/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/1000mb_creosote_oil.png rename to static/browse/railcraft/1000mb_creosote_oil/icon.png diff --git a/prerender/browse/railcraft/1000mb_creosote_oil/index.html b/static/browse/railcraft/1000mb_creosote_oil/index.html similarity index 100% rename from prerender/browse/railcraft/1000mb_creosote_oil/index.html rename to static/browse/railcraft/1000mb_creosote_oil/index.html diff --git a/src/data/railcraft/9.5.0/images/500mb_creosote_oil.png b/static/browse/railcraft/500mb_creosote_oil/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/500mb_creosote_oil.png rename to static/browse/railcraft/500mb_creosote_oil/icon.png diff --git a/prerender/browse/railcraft/500mb_creosote_oil/index.html b/static/browse/railcraft/500mb_creosote_oil/index.html similarity index 100% rename from prerender/browse/railcraft/500mb_creosote_oil/index.html rename to static/browse/railcraft/500mb_creosote_oil/index.html diff --git a/src/data/railcraft/9.5.0/images/abyssal_block.png b/static/browse/railcraft/abyssal_block/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/abyssal_block.png rename to static/browse/railcraft/abyssal_block/icon.png diff --git a/prerender/browse/railcraft/abyssal_block/index.html b/static/browse/railcraft/abyssal_block/index.html similarity index 100% rename from prerender/browse/railcraft/abyssal_block/index.html rename to static/browse/railcraft/abyssal_block/index.html diff --git a/src/data/railcraft/9.5.0/images/abyssal_block_slab.png b/static/browse/railcraft/abyssal_block_slab/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/abyssal_block_slab.png rename to static/browse/railcraft/abyssal_block_slab/icon.png diff --git a/prerender/browse/railcraft/abyssal_block_slab/index.html b/static/browse/railcraft/abyssal_block_slab/index.html similarity index 100% rename from prerender/browse/railcraft/abyssal_block_slab/index.html rename to static/browse/railcraft/abyssal_block_slab/index.html diff --git a/src/data/railcraft/9.5.0/images/abyssal_block_stairs.png b/static/browse/railcraft/abyssal_block_stairs/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/abyssal_block_stairs.png rename to static/browse/railcraft/abyssal_block_stairs/icon.png diff --git a/prerender/browse/railcraft/abyssal_block_stairs/index.html b/static/browse/railcraft/abyssal_block_stairs/index.html similarity index 100% rename from prerender/browse/railcraft/abyssal_block_stairs/index.html rename to static/browse/railcraft/abyssal_block_stairs/index.html diff --git a/src/data/railcraft/9.5.0/images/abyssal_brick.png b/static/browse/railcraft/abyssal_brick/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/abyssal_brick.png rename to static/browse/railcraft/abyssal_brick/icon.png diff --git a/prerender/browse/railcraft/abyssal_brick/index.html b/static/browse/railcraft/abyssal_brick/index.html similarity index 100% rename from prerender/browse/railcraft/abyssal_brick/index.html rename to static/browse/railcraft/abyssal_brick/index.html diff --git a/src/data/railcraft/9.5.0/images/abyssal_brick_slab.png b/static/browse/railcraft/abyssal_brick_slab/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/abyssal_brick_slab.png rename to static/browse/railcraft/abyssal_brick_slab/icon.png diff --git a/prerender/browse/railcraft/abyssal_brick_slab/index.html b/static/browse/railcraft/abyssal_brick_slab/index.html similarity index 100% rename from prerender/browse/railcraft/abyssal_brick_slab/index.html rename to static/browse/railcraft/abyssal_brick_slab/index.html diff --git a/src/data/railcraft/9.5.0/images/abyssal_brick_stairs.png b/static/browse/railcraft/abyssal_brick_stairs/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/abyssal_brick_stairs.png rename to static/browse/railcraft/abyssal_brick_stairs/icon.png diff --git a/prerender/browse/railcraft/abyssal_brick_stairs/index.html b/static/browse/railcraft/abyssal_brick_stairs/index.html similarity index 100% rename from prerender/browse/railcraft/abyssal_brick_stairs/index.html rename to static/browse/railcraft/abyssal_brick_stairs/index.html diff --git a/src/data/railcraft/9.5.0/images/abyssal_brick_wall.png b/static/browse/railcraft/abyssal_brick_wall/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/abyssal_brick_wall.png rename to static/browse/railcraft/abyssal_brick_wall/icon.png diff --git a/prerender/browse/railcraft/abyssal_brick_wall/index.html b/static/browse/railcraft/abyssal_brick_wall/index.html similarity index 100% rename from prerender/browse/railcraft/abyssal_brick_wall/index.html rename to static/browse/railcraft/abyssal_brick_wall/index.html diff --git a/src/data/railcraft/9.5.0/images/abyssal_cobble_slab.png b/static/browse/railcraft/abyssal_cobble_slab/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/abyssal_cobble_slab.png rename to static/browse/railcraft/abyssal_cobble_slab/icon.png diff --git a/prerender/browse/railcraft/abyssal_cobble_slab/index.html b/static/browse/railcraft/abyssal_cobble_slab/index.html similarity index 100% rename from prerender/browse/railcraft/abyssal_cobble_slab/index.html rename to static/browse/railcraft/abyssal_cobble_slab/index.html diff --git a/src/data/railcraft/9.5.0/images/abyssal_cobble_stairs.png b/static/browse/railcraft/abyssal_cobble_stairs/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/abyssal_cobble_stairs.png rename to static/browse/railcraft/abyssal_cobble_stairs/icon.png diff --git a/prerender/browse/railcraft/abyssal_cobble_stairs/index.html b/static/browse/railcraft/abyssal_cobble_stairs/index.html similarity index 100% rename from prerender/browse/railcraft/abyssal_cobble_stairs/index.html rename to static/browse/railcraft/abyssal_cobble_stairs/index.html diff --git a/src/data/railcraft/9.5.0/images/abyssal_cobblestone.png b/static/browse/railcraft/abyssal_cobblestone/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/abyssal_cobblestone.png rename to static/browse/railcraft/abyssal_cobblestone/icon.png diff --git a/prerender/browse/railcraft/abyssal_cobblestone/index.html b/static/browse/railcraft/abyssal_cobblestone/index.html similarity index 100% rename from prerender/browse/railcraft/abyssal_cobblestone/index.html rename to static/browse/railcraft/abyssal_cobblestone/index.html diff --git a/src/data/railcraft/9.5.0/images/abyssal_stone.png b/static/browse/railcraft/abyssal_stone/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/abyssal_stone.png rename to static/browse/railcraft/abyssal_stone/icon.png diff --git a/prerender/browse/railcraft/abyssal_stone/index.html b/static/browse/railcraft/abyssal_stone/index.html similarity index 100% rename from prerender/browse/railcraft/abyssal_stone/index.html rename to static/browse/railcraft/abyssal_stone/index.html diff --git a/src/data/railcraft/9.5.0/images/abyssal_stone_lantern.png b/static/browse/railcraft/abyssal_stone_lantern/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/abyssal_stone_lantern.png rename to static/browse/railcraft/abyssal_stone_lantern/icon.png diff --git a/prerender/browse/railcraft/abyssal_stone_lantern/index.html b/static/browse/railcraft/abyssal_stone_lantern/index.html similarity index 100% rename from prerender/browse/railcraft/abyssal_stone_lantern/index.html rename to static/browse/railcraft/abyssal_stone_lantern/index.html diff --git a/src/data/railcraft/9.5.0/images/admin_anchor.png b/static/browse/railcraft/admin_anchor/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/admin_anchor.png rename to static/browse/railcraft/admin_anchor/icon.png diff --git a/prerender/browse/railcraft/admin_anchor/index.html b/static/browse/railcraft/admin_anchor/index.html similarity index 100% rename from prerender/browse/railcraft/admin_anchor/index.html rename to static/browse/railcraft/admin_anchor/index.html diff --git a/src/data/railcraft/9.5.0/images/admin_anchor_cart.png b/static/browse/railcraft/admin_anchor_cart/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/admin_anchor_cart.png rename to static/browse/railcraft/admin_anchor_cart/icon.png diff --git a/prerender/browse/railcraft/admin_anchor_cart/index.html b/static/browse/railcraft/admin_anchor_cart/index.html similarity index 100% rename from prerender/browse/railcraft/admin_anchor_cart/index.html rename to static/browse/railcraft/admin_anchor_cart/index.html diff --git a/src/data/railcraft/9.5.0/images/admin_feeder_unit.png b/static/browse/railcraft/admin_feeder_unit/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/admin_feeder_unit.png rename to static/browse/railcraft/admin_feeder_unit/icon.png diff --git a/prerender/browse/railcraft/admin_feeder_unit/index.html b/static/browse/railcraft/admin_feeder_unit/index.html similarity index 100% rename from prerender/browse/railcraft/admin_feeder_unit/index.html rename to static/browse/railcraft/admin_feeder_unit/index.html diff --git a/src/data/railcraft/9.5.0/images/admin_steam_producer.png b/static/browse/railcraft/admin_steam_producer/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/admin_steam_producer.png rename to static/browse/railcraft/admin_steam_producer/icon.png diff --git a/prerender/browse/railcraft/admin_steam_producer/index.html b/static/browse/railcraft/admin_steam_producer/index.html similarity index 100% rename from prerender/browse/railcraft/admin_steam_producer/index.html rename to static/browse/railcraft/admin_steam_producer/index.html diff --git a/src/data/railcraft/9.5.0/images/adv_item_loader.png b/static/browse/railcraft/adv_item_loader/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/adv_item_loader.png rename to static/browse/railcraft/adv_item_loader/icon.png diff --git a/prerender/browse/railcraft/adv_item_loader/index.html b/static/browse/railcraft/adv_item_loader/index.html similarity index 100% rename from prerender/browse/railcraft/adv_item_loader/index.html rename to static/browse/railcraft/adv_item_loader/index.html diff --git a/src/data/railcraft/9.5.0/images/adv_item_unloader.png b/static/browse/railcraft/adv_item_unloader/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/adv_item_unloader.png rename to static/browse/railcraft/adv_item_unloader/icon.png diff --git a/prerender/browse/railcraft/adv_item_unloader/index.html b/static/browse/railcraft/adv_item_unloader/index.html similarity index 100% rename from prerender/browse/railcraft/adv_item_unloader/index.html rename to static/browse/railcraft/adv_item_unloader/index.html diff --git a/src/data/railcraft/9.5.0/images/advanced_rail.png b/static/browse/railcraft/advanced_rail/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/advanced_rail.png rename to static/browse/railcraft/advanced_rail/icon.png diff --git a/prerender/browse/railcraft/advanced_rail/index.html b/static/browse/railcraft/advanced_rail/index.html similarity index 100% rename from prerender/browse/railcraft/advanced_rail/index.html rename to static/browse/railcraft/advanced_rail/index.html diff --git a/src/data/railcraft/9.5.0/images/analog_signal_controller_box.png b/static/browse/railcraft/analog_signal_controller_box/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/analog_signal_controller_box.png rename to static/browse/railcraft/analog_signal_controller_box/icon.png diff --git a/prerender/browse/railcraft/analog_signal_controller_box/index.html b/static/browse/railcraft/analog_signal_controller_box/index.html similarity index 100% rename from prerender/browse/railcraft/analog_signal_controller_box/index.html rename to static/browse/railcraft/analog_signal_controller_box/index.html diff --git a/src/data/railcraft/9.5.0/images/anchor_cart.png b/static/browse/railcraft/anchor_cart/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/anchor_cart.png rename to static/browse/railcraft/anchor_cart/icon.png diff --git a/prerender/browse/railcraft/anchor_cart/index.html b/static/browse/railcraft/anchor_cart/index.html similarity index 100% rename from prerender/browse/railcraft/anchor_cart/index.html rename to static/browse/railcraft/anchor_cart/index.html diff --git a/src/data/railcraft/9.5.0/images/anchor_sentinel.png b/static/browse/railcraft/anchor_sentinel/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/anchor_sentinel.png rename to static/browse/railcraft/anchor_sentinel/icon.png diff --git a/prerender/browse/railcraft/anchor_sentinel/index.html b/static/browse/railcraft/anchor_sentinel/index.html similarity index 100% rename from prerender/browse/railcraft/anchor_sentinel/index.html rename to static/browse/railcraft/anchor_sentinel/index.html diff --git a/src/data/railcraft/9.5.0/images/automated_steam_trap.png b/static/browse/railcraft/automated_steam_trap/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/automated_steam_trap.png rename to static/browse/railcraft/automated_steam_trap/icon.png diff --git a/prerender/browse/railcraft/automated_steam_trap/index.html b/static/browse/railcraft/automated_steam_trap/index.html similarity index 100% rename from prerender/browse/railcraft/automated_steam_trap/index.html rename to static/browse/railcraft/automated_steam_trap/index.html diff --git a/src/data/railcraft/9.5.0/images/black_metal_platform.png b/static/browse/railcraft/black_metal_platform/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/black_metal_platform.png rename to static/browse/railcraft/black_metal_platform/icon.png diff --git a/prerender/browse/railcraft/black_metal_platform/index.html b/static/browse/railcraft/black_metal_platform/index.html similarity index 100% rename from prerender/browse/railcraft/black_metal_platform/index.html rename to static/browse/railcraft/black_metal_platform/index.html diff --git a/src/data/railcraft/9.5.0/images/black_metal_post.png b/static/browse/railcraft/black_metal_post/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/black_metal_post.png rename to static/browse/railcraft/black_metal_post/icon.png diff --git a/prerender/browse/railcraft/black_metal_post/index.html b/static/browse/railcraft/black_metal_post/index.html similarity index 100% rename from prerender/browse/railcraft/black_metal_post/index.html rename to static/browse/railcraft/black_metal_post/index.html diff --git a/src/data/railcraft/9.5.0/images/blast_furnace.png b/static/browse/railcraft/blast_furnace/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/blast_furnace.png rename to static/browse/railcraft/blast_furnace/icon.png diff --git a/prerender/browse/railcraft/blast_furnace/index.html b/static/browse/railcraft/blast_furnace/index.html similarity index 100% rename from prerender/browse/railcraft/blast_furnace/index.html rename to static/browse/railcraft/blast_furnace/index.html diff --git a/src/data/railcraft/9.5.0/images/blast_furnace_bottom_half.png b/static/browse/railcraft/blast_furnace_bottom_half/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/blast_furnace_bottom_half.png rename to static/browse/railcraft/blast_furnace_bottom_half/icon.png diff --git a/prerender/browse/railcraft/blast_furnace_bottom_half/index.html b/static/browse/railcraft/blast_furnace_bottom_half/index.html similarity index 100% rename from prerender/browse/railcraft/blast_furnace_bottom_half/index.html rename to static/browse/railcraft/blast_furnace_bottom_half/index.html diff --git a/src/data/railcraft/9.5.0/images/blast_furnace_brick.png b/static/browse/railcraft/blast_furnace_brick/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/blast_furnace_brick.png rename to static/browse/railcraft/blast_furnace_brick/icon.png diff --git a/prerender/browse/railcraft/blast_furnace_brick/index.html b/static/browse/railcraft/blast_furnace_brick/index.html similarity index 100% rename from prerender/browse/railcraft/blast_furnace_brick/index.html rename to static/browse/railcraft/blast_furnace_brick/index.html diff --git a/src/data/railcraft/9.5.0/images/blast_furnace_inner_layer.png b/static/browse/railcraft/blast_furnace_inner_layer/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/blast_furnace_inner_layer.png rename to static/browse/railcraft/blast_furnace_inner_layer/icon.png diff --git a/prerender/browse/railcraft/blast_furnace_inner_layer/index.html b/static/browse/railcraft/blast_furnace_inner_layer/index.html similarity index 100% rename from prerender/browse/railcraft/blast_furnace_inner_layer/index.html rename to static/browse/railcraft/blast_furnace_inner_layer/index.html diff --git a/src/data/railcraft/9.5.0/images/blast_furnace_outer_layer.png b/static/browse/railcraft/blast_furnace_outer_layer/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/blast_furnace_outer_layer.png rename to static/browse/railcraft/blast_furnace_outer_layer/icon.png diff --git a/prerender/browse/railcraft/blast_furnace_outer_layer/index.html b/static/browse/railcraft/blast_furnace_outer_layer/index.html similarity index 100% rename from prerender/browse/railcraft/blast_furnace_outer_layer/index.html rename to static/browse/railcraft/blast_furnace_outer_layer/index.html diff --git a/src/data/railcraft/9.5.0/images/bleached_bone_block.png b/static/browse/railcraft/bleached_bone_block/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/bleached_bone_block.png rename to static/browse/railcraft/bleached_bone_block/icon.png diff --git a/prerender/browse/railcraft/bleached_bone_block/index.html b/static/browse/railcraft/bleached_bone_block/index.html similarity index 100% rename from prerender/browse/railcraft/bleached_bone_block/index.html rename to static/browse/railcraft/bleached_bone_block/index.html diff --git a/src/data/railcraft/9.5.0/images/bleached_bone_block_slab.png b/static/browse/railcraft/bleached_bone_block_slab/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/bleached_bone_block_slab.png rename to static/browse/railcraft/bleached_bone_block_slab/icon.png diff --git a/prerender/browse/railcraft/bleached_bone_block_slab/index.html b/static/browse/railcraft/bleached_bone_block_slab/index.html similarity index 100% rename from prerender/browse/railcraft/bleached_bone_block_slab/index.html rename to static/browse/railcraft/bleached_bone_block_slab/index.html diff --git a/src/data/railcraft/9.5.0/images/bleached_bone_block_stairs.png b/static/browse/railcraft/bleached_bone_block_stairs/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/bleached_bone_block_stairs.png rename to static/browse/railcraft/bleached_bone_block_stairs/icon.png diff --git a/prerender/browse/railcraft/bleached_bone_block_stairs/index.html b/static/browse/railcraft/bleached_bone_block_stairs/index.html similarity index 100% rename from prerender/browse/railcraft/bleached_bone_block_stairs/index.html rename to static/browse/railcraft/bleached_bone_block_stairs/index.html diff --git a/src/data/railcraft/9.5.0/images/bleached_bone_brick.png b/static/browse/railcraft/bleached_bone_brick/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/bleached_bone_brick.png rename to static/browse/railcraft/bleached_bone_brick/icon.png diff --git a/prerender/browse/railcraft/bleached_bone_brick/index.html b/static/browse/railcraft/bleached_bone_brick/index.html similarity index 100% rename from prerender/browse/railcraft/bleached_bone_brick/index.html rename to static/browse/railcraft/bleached_bone_brick/index.html diff --git a/src/data/railcraft/9.5.0/images/bleached_bone_brick_slab.png b/static/browse/railcraft/bleached_bone_brick_slab/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/bleached_bone_brick_slab.png rename to static/browse/railcraft/bleached_bone_brick_slab/icon.png diff --git a/prerender/browse/railcraft/bleached_bone_brick_slab/index.html b/static/browse/railcraft/bleached_bone_brick_slab/index.html similarity index 100% rename from prerender/browse/railcraft/bleached_bone_brick_slab/index.html rename to static/browse/railcraft/bleached_bone_brick_slab/index.html diff --git a/src/data/railcraft/9.5.0/images/bleached_bone_brick_stairs.png b/static/browse/railcraft/bleached_bone_brick_stairs/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/bleached_bone_brick_stairs.png rename to static/browse/railcraft/bleached_bone_brick_stairs/icon.png diff --git a/prerender/browse/railcraft/bleached_bone_brick_stairs/index.html b/static/browse/railcraft/bleached_bone_brick_stairs/index.html similarity index 100% rename from prerender/browse/railcraft/bleached_bone_brick_stairs/index.html rename to static/browse/railcraft/bleached_bone_brick_stairs/index.html diff --git a/src/data/railcraft/9.5.0/images/bleached_bone_brick_wall.png b/static/browse/railcraft/bleached_bone_brick_wall/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/bleached_bone_brick_wall.png rename to static/browse/railcraft/bleached_bone_brick_wall/icon.png diff --git a/prerender/browse/railcraft/bleached_bone_brick_wall/index.html b/static/browse/railcraft/bleached_bone_brick_wall/index.html similarity index 100% rename from prerender/browse/railcraft/bleached_bone_brick_wall/index.html rename to static/browse/railcraft/bleached_bone_brick_wall/index.html diff --git a/src/data/railcraft/9.5.0/images/bleached_bone_cobble_slab.png b/static/browse/railcraft/bleached_bone_cobble_slab/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/bleached_bone_cobble_slab.png rename to static/browse/railcraft/bleached_bone_cobble_slab/icon.png diff --git a/prerender/browse/railcraft/bleached_bone_cobble_slab/index.html b/static/browse/railcraft/bleached_bone_cobble_slab/index.html similarity index 100% rename from prerender/browse/railcraft/bleached_bone_cobble_slab/index.html rename to static/browse/railcraft/bleached_bone_cobble_slab/index.html diff --git a/src/data/railcraft/9.5.0/images/bleached_bone_cobble_stairs.png b/static/browse/railcraft/bleached_bone_cobble_stairs/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/bleached_bone_cobble_stairs.png rename to static/browse/railcraft/bleached_bone_cobble_stairs/icon.png diff --git a/prerender/browse/railcraft/bleached_bone_cobble_stairs/index.html b/static/browse/railcraft/bleached_bone_cobble_stairs/index.html similarity index 100% rename from prerender/browse/railcraft/bleached_bone_cobble_stairs/index.html rename to static/browse/railcraft/bleached_bone_cobble_stairs/index.html diff --git a/src/data/railcraft/9.5.0/images/bleached_bone_cobblestone.png b/static/browse/railcraft/bleached_bone_cobblestone/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/bleached_bone_cobblestone.png rename to static/browse/railcraft/bleached_bone_cobblestone/icon.png diff --git a/prerender/browse/railcraft/bleached_bone_cobblestone/index.html b/static/browse/railcraft/bleached_bone_cobblestone/index.html similarity index 100% rename from prerender/browse/railcraft/bleached_bone_cobblestone/index.html rename to static/browse/railcraft/bleached_bone_cobblestone/index.html diff --git a/src/data/railcraft/9.5.0/images/bleached_bone_stone_lantern.png b/static/browse/railcraft/bleached_bone_stone_lantern/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/bleached_bone_stone_lantern.png rename to static/browse/railcraft/bleached_bone_stone_lantern/icon.png diff --git a/prerender/browse/railcraft/bleached_bone_stone_lantern/index.html b/static/browse/railcraft/bleached_bone_stone_lantern/index.html similarity index 100% rename from prerender/browse/railcraft/bleached_bone_stone_lantern/index.html rename to static/browse/railcraft/bleached_bone_stone_lantern/index.html diff --git a/src/data/railcraft/9.5.0/images/bleached_clay.png b/static/browse/railcraft/bleached_clay/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/bleached_clay.png rename to static/browse/railcraft/bleached_clay/icon.png diff --git a/prerender/browse/railcraft/bleached_clay/index.html b/static/browse/railcraft/bleached_clay/index.html similarity index 100% rename from prerender/browse/railcraft/bleached_clay/index.html rename to static/browse/railcraft/bleached_clay/index.html diff --git a/src/data/railcraft/9.5.0/images/block_of_coal_coke.png b/static/browse/railcraft/block_of_coal_coke/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/block_of_coal_coke.png rename to static/browse/railcraft/block_of_coal_coke/icon.png diff --git a/prerender/browse/railcraft/block_of_coal_coke/index.html b/static/browse/railcraft/block_of_coal_coke/index.html similarity index 100% rename from prerender/browse/railcraft/block_of_coal_coke/index.html rename to static/browse/railcraft/block_of_coal_coke/index.html diff --git a/src/data/railcraft/9.5.0/images/block_of_concrete.png b/static/browse/railcraft/block_of_concrete/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/block_of_concrete.png rename to static/browse/railcraft/block_of_concrete/icon.png diff --git a/prerender/browse/railcraft/block_of_concrete/index.html b/static/browse/railcraft/block_of_concrete/index.html similarity index 100% rename from prerender/browse/railcraft/block_of_concrete/index.html rename to static/browse/railcraft/block_of_concrete/index.html diff --git a/src/data/railcraft/9.5.0/images/block_of_copper.png b/static/browse/railcraft/block_of_copper/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/block_of_copper.png rename to static/browse/railcraft/block_of_copper/icon.png diff --git a/prerender/browse/railcraft/block_of_copper/index.html b/static/browse/railcraft/block_of_copper/index.html similarity index 100% rename from prerender/browse/railcraft/block_of_copper/index.html rename to static/browse/railcraft/block_of_copper/index.html diff --git a/src/data/railcraft/9.5.0/images/block_of_lead.png b/static/browse/railcraft/block_of_lead/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/block_of_lead.png rename to static/browse/railcraft/block_of_lead/icon.png diff --git a/prerender/browse/railcraft/block_of_lead/index.html b/static/browse/railcraft/block_of_lead/index.html similarity index 100% rename from prerender/browse/railcraft/block_of_lead/index.html rename to static/browse/railcraft/block_of_lead/index.html diff --git a/src/data/railcraft/9.5.0/images/block_of_steel.png b/static/browse/railcraft/block_of_steel/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/block_of_steel.png rename to static/browse/railcraft/block_of_steel/icon.png diff --git a/prerender/browse/railcraft/block_of_steel/index.html b/static/browse/railcraft/block_of_steel/index.html similarity index 100% rename from prerender/browse/railcraft/block_of_steel/index.html rename to static/browse/railcraft/block_of_steel/index.html diff --git a/src/data/railcraft/9.5.0/images/block_of_tin.png b/static/browse/railcraft/block_of_tin/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/block_of_tin.png rename to static/browse/railcraft/block_of_tin/icon.png diff --git a/prerender/browse/railcraft/block_of_tin/index.html b/static/browse/railcraft/block_of_tin/index.html similarity index 100% rename from prerender/browse/railcraft/block_of_tin/index.html rename to static/browse/railcraft/block_of_tin/index.html diff --git a/src/data/railcraft/9.5.0/images/block_signal.png b/static/browse/railcraft/block_signal/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/block_signal.png rename to static/browse/railcraft/block_signal/icon.png diff --git a/prerender/browse/railcraft/block_signal/index.html b/static/browse/railcraft/block_signal/index.html similarity index 100% rename from prerender/browse/railcraft/block_signal/index.html rename to static/browse/railcraft/block_signal/index.html diff --git a/src/data/railcraft/9.5.0/images/blood_stained_block.png b/static/browse/railcraft/blood_stained_block/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/blood_stained_block.png rename to static/browse/railcraft/blood_stained_block/icon.png diff --git a/prerender/browse/railcraft/blood_stained_block/index.html b/static/browse/railcraft/blood_stained_block/index.html similarity index 100% rename from prerender/browse/railcraft/blood_stained_block/index.html rename to static/browse/railcraft/blood_stained_block/index.html diff --git a/src/data/railcraft/9.5.0/images/blood_stained_block_slab.png b/static/browse/railcraft/blood_stained_block_slab/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/blood_stained_block_slab.png rename to static/browse/railcraft/blood_stained_block_slab/icon.png diff --git a/prerender/browse/railcraft/blood_stained_block_slab/index.html b/static/browse/railcraft/blood_stained_block_slab/index.html similarity index 100% rename from prerender/browse/railcraft/blood_stained_block_slab/index.html rename to static/browse/railcraft/blood_stained_block_slab/index.html diff --git a/src/data/railcraft/9.5.0/images/blood_stained_block_stairs.png b/static/browse/railcraft/blood_stained_block_stairs/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/blood_stained_block_stairs.png rename to static/browse/railcraft/blood_stained_block_stairs/icon.png diff --git a/prerender/browse/railcraft/blood_stained_block_stairs/index.html b/static/browse/railcraft/blood_stained_block_stairs/index.html similarity index 100% rename from prerender/browse/railcraft/blood_stained_block_stairs/index.html rename to static/browse/railcraft/blood_stained_block_stairs/index.html diff --git a/src/data/railcraft/9.5.0/images/blood_stained_brick.png b/static/browse/railcraft/blood_stained_brick/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/blood_stained_brick.png rename to static/browse/railcraft/blood_stained_brick/icon.png diff --git a/prerender/browse/railcraft/blood_stained_brick/index.html b/static/browse/railcraft/blood_stained_brick/index.html similarity index 100% rename from prerender/browse/railcraft/blood_stained_brick/index.html rename to static/browse/railcraft/blood_stained_brick/index.html diff --git a/src/data/railcraft/9.5.0/images/blood_stained_brick_slab.png b/static/browse/railcraft/blood_stained_brick_slab/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/blood_stained_brick_slab.png rename to static/browse/railcraft/blood_stained_brick_slab/icon.png diff --git a/prerender/browse/railcraft/blood_stained_brick_slab/index.html b/static/browse/railcraft/blood_stained_brick_slab/index.html similarity index 100% rename from prerender/browse/railcraft/blood_stained_brick_slab/index.html rename to static/browse/railcraft/blood_stained_brick_slab/index.html diff --git a/src/data/railcraft/9.5.0/images/blood_stained_brick_stairs.png b/static/browse/railcraft/blood_stained_brick_stairs/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/blood_stained_brick_stairs.png rename to static/browse/railcraft/blood_stained_brick_stairs/icon.png diff --git a/prerender/browse/railcraft/blood_stained_brick_stairs/index.html b/static/browse/railcraft/blood_stained_brick_stairs/index.html similarity index 100% rename from prerender/browse/railcraft/blood_stained_brick_stairs/index.html rename to static/browse/railcraft/blood_stained_brick_stairs/index.html diff --git a/src/data/railcraft/9.5.0/images/blood_stained_brick_wall.png b/static/browse/railcraft/blood_stained_brick_wall/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/blood_stained_brick_wall.png rename to static/browse/railcraft/blood_stained_brick_wall/icon.png diff --git a/prerender/browse/railcraft/blood_stained_brick_wall/index.html b/static/browse/railcraft/blood_stained_brick_wall/index.html similarity index 100% rename from prerender/browse/railcraft/blood_stained_brick_wall/index.html rename to static/browse/railcraft/blood_stained_brick_wall/index.html diff --git a/src/data/railcraft/9.5.0/images/blood_stained_cobble_slab.png b/static/browse/railcraft/blood_stained_cobble_slab/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/blood_stained_cobble_slab.png rename to static/browse/railcraft/blood_stained_cobble_slab/icon.png diff --git a/prerender/browse/railcraft/blood_stained_cobble_slab/index.html b/static/browse/railcraft/blood_stained_cobble_slab/index.html similarity index 100% rename from prerender/browse/railcraft/blood_stained_cobble_slab/index.html rename to static/browse/railcraft/blood_stained_cobble_slab/index.html diff --git a/src/data/railcraft/9.5.0/images/blood_stained_cobble_stairs.png b/static/browse/railcraft/blood_stained_cobble_stairs/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/blood_stained_cobble_stairs.png rename to static/browse/railcraft/blood_stained_cobble_stairs/icon.png diff --git a/prerender/browse/railcraft/blood_stained_cobble_stairs/index.html b/static/browse/railcraft/blood_stained_cobble_stairs/index.html similarity index 100% rename from prerender/browse/railcraft/blood_stained_cobble_stairs/index.html rename to static/browse/railcraft/blood_stained_cobble_stairs/index.html diff --git a/src/data/railcraft/9.5.0/images/blood_stained_cobblestone.png b/static/browse/railcraft/blood_stained_cobblestone/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/blood_stained_cobblestone.png rename to static/browse/railcraft/blood_stained_cobblestone/icon.png diff --git a/prerender/browse/railcraft/blood_stained_cobblestone/index.html b/static/browse/railcraft/blood_stained_cobblestone/index.html similarity index 100% rename from prerender/browse/railcraft/blood_stained_cobblestone/index.html rename to static/browse/railcraft/blood_stained_cobblestone/index.html diff --git a/src/data/railcraft/9.5.0/images/bloodstained_stone_lantern.png b/static/browse/railcraft/bloodstained_stone_lantern/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/bloodstained_stone_lantern.png rename to static/browse/railcraft/bloodstained_stone_lantern/icon.png diff --git a/prerender/browse/railcraft/bloodstained_stone_lantern/index.html b/static/browse/railcraft/bloodstained_stone_lantern/index.html similarity index 100% rename from prerender/browse/railcraft/bloodstained_stone_lantern/index.html rename to static/browse/railcraft/bloodstained_stone_lantern/index.html diff --git a/src/data/railcraft/9.5.0/images/blue_metal_platform.png b/static/browse/railcraft/blue_metal_platform/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/blue_metal_platform.png rename to static/browse/railcraft/blue_metal_platform/icon.png diff --git a/prerender/browse/railcraft/blue_metal_platform/index.html b/static/browse/railcraft/blue_metal_platform/index.html similarity index 100% rename from prerender/browse/railcraft/blue_metal_platform/index.html rename to static/browse/railcraft/blue_metal_platform/index.html diff --git a/src/data/railcraft/9.5.0/images/blue_metal_post.png b/static/browse/railcraft/blue_metal_post/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/blue_metal_post.png rename to static/browse/railcraft/blue_metal_post/icon.png diff --git a/prerender/browse/railcraft/blue_metal_post/index.html b/static/browse/railcraft/blue_metal_post/index.html similarity index 100% rename from prerender/browse/railcraft/blue_metal_post/index.html rename to static/browse/railcraft/blue_metal_post/index.html diff --git a/src/data/railcraft/9.5.0/images/brick_wall.png b/static/browse/railcraft/brick_wall/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/brick_wall.png rename to static/browse/railcraft/brick_wall/icon.png diff --git a/prerender/browse/railcraft/brick_wall/index.html b/static/browse/railcraft/brick_wall/index.html similarity index 100% rename from prerender/browse/railcraft/brick_wall/index.html rename to static/browse/railcraft/brick_wall/index.html diff --git a/src/data/railcraft/9.5.0/images/brown_metal_platform.png b/static/browse/railcraft/brown_metal_platform/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/brown_metal_platform.png rename to static/browse/railcraft/brown_metal_platform/icon.png diff --git a/prerender/browse/railcraft/brown_metal_platform/index.html b/static/browse/railcraft/brown_metal_platform/index.html similarity index 100% rename from prerender/browse/railcraft/brown_metal_platform/index.html rename to static/browse/railcraft/brown_metal_platform/index.html diff --git a/src/data/railcraft/9.5.0/images/brown_metal_post.png b/static/browse/railcraft/brown_metal_post/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/brown_metal_post.png rename to static/browse/railcraft/brown_metal_post/icon.png diff --git a/prerender/browse/railcraft/brown_metal_post/index.html b/static/browse/railcraft/brown_metal_post/index.html similarity index 100% rename from prerender/browse/railcraft/brown_metal_post/index.html rename to static/browse/railcraft/brown_metal_post/index.html diff --git a/src/data/railcraft/9.5.0/images/buffer_stop_track.png b/static/browse/railcraft/buffer_stop_track/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/buffer_stop_track.png rename to static/browse/railcraft/buffer_stop_track/icon.png diff --git a/prerender/browse/railcraft/buffer_stop_track/index.html b/static/browse/railcraft/buffer_stop_track/index.html similarity index 100% rename from prerender/browse/railcraft/buffer_stop_track/index.html rename to static/browse/railcraft/buffer_stop_track/index.html diff --git a/src/data/railcraft/9.5.0/images/cart_dispenser.png b/static/browse/railcraft/cart_dispenser/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/cart_dispenser.png rename to static/browse/railcraft/cart_dispenser/icon.png diff --git a/prerender/browse/railcraft/cart_dispenser/index.html b/static/browse/railcraft/cart_dispenser/index.html similarity index 100% rename from prerender/browse/railcraft/cart_dispenser/index.html rename to static/browse/railcraft/cart_dispenser/index.html diff --git a/src/data/railcraft/9.5.0/images/charcoal_dust.png b/static/browse/railcraft/charcoal_dust/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/charcoal_dust.png rename to static/browse/railcraft/charcoal_dust/icon.png diff --git a/prerender/browse/railcraft/charcoal_dust/index.html b/static/browse/railcraft/charcoal_dust/index.html similarity index 100% rename from prerender/browse/railcraft/charcoal_dust/index.html rename to static/browse/railcraft/charcoal_dust/index.html diff --git a/src/data/railcraft/9.5.0/images/chiseled_quartz_wall.png b/static/browse/railcraft/chiseled_quartz_wall/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/chiseled_quartz_wall.png rename to static/browse/railcraft/chiseled_quartz_wall/icon.png diff --git a/prerender/browse/railcraft/chiseled_quartz_wall/index.html b/static/browse/railcraft/chiseled_quartz_wall/index.html similarity index 100% rename from prerender/browse/railcraft/chiseled_quartz_wall/index.html rename to static/browse/railcraft/chiseled_quartz_wall/index.html diff --git a/src/data/railcraft/9.5.0/images/chiseled_sandstone_wall.png b/static/browse/railcraft/chiseled_sandstone_wall/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/chiseled_sandstone_wall.png rename to static/browse/railcraft/chiseled_sandstone_wall/icon.png diff --git a/prerender/browse/railcraft/chiseled_sandstone_wall/index.html b/static/browse/railcraft/chiseled_sandstone_wall/index.html similarity index 100% rename from prerender/browse/railcraft/chiseled_sandstone_wall/index.html rename to static/browse/railcraft/chiseled_sandstone_wall/index.html diff --git a/src/data/railcraft/9.5.0/images/chiseled_stone_brick_wall.png b/static/browse/railcraft/chiseled_stone_brick_wall/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/chiseled_stone_brick_wall.png rename to static/browse/railcraft/chiseled_stone_brick_wall/icon.png diff --git a/prerender/browse/railcraft/chiseled_stone_brick_wall/index.html b/static/browse/railcraft/chiseled_stone_brick_wall/index.html similarity index 100% rename from prerender/browse/railcraft/chiseled_stone_brick_wall/index.html rename to static/browse/railcraft/chiseled_stone_brick_wall/index.html diff --git a/src/data/railcraft/9.5.0/images/coal_coke.png b/static/browse/railcraft/coal_coke/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/coal_coke.png rename to static/browse/railcraft/coal_coke/icon.png diff --git a/prerender/browse/railcraft/coal_coke/index.html b/static/browse/railcraft/coal_coke/index.html similarity index 100% rename from prerender/browse/railcraft/coal_coke/index.html rename to static/browse/railcraft/coal_coke/index.html diff --git a/src/data/railcraft/9.5.0/images/coke_oven.png b/static/browse/railcraft/coke_oven/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/coke_oven.png rename to static/browse/railcraft/coke_oven/icon.png diff --git a/prerender/browse/railcraft/coke_oven/index.html b/static/browse/railcraft/coke_oven/index.html similarity index 100% rename from prerender/browse/railcraft/coke_oven/index.html rename to static/browse/railcraft/coke_oven/index.html diff --git a/src/data/railcraft/9.5.0/images/coke_oven_brick.png b/static/browse/railcraft/coke_oven_brick/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/coke_oven_brick.png rename to static/browse/railcraft/coke_oven_brick/icon.png diff --git a/prerender/browse/railcraft/coke_oven_brick/index.html b/static/browse/railcraft/coke_oven_brick/index.html similarity index 100% rename from prerender/browse/railcraft/coke_oven_brick/index.html rename to static/browse/railcraft/coke_oven_brick/index.html diff --git a/src/data/railcraft/9.5.0/images/coke_oven_layer.png b/static/browse/railcraft/coke_oven_layer/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/coke_oven_layer.png rename to static/browse/railcraft/coke_oven_layer/icon.png diff --git a/prerender/browse/railcraft/coke_oven_layer/index.html b/static/browse/railcraft/coke_oven_layer/index.html similarity index 100% rename from prerender/browse/railcraft/coke_oven_layer/index.html rename to static/browse/railcraft/coke_oven_layer/index.html diff --git a/src/data/railcraft/9.5.0/images/commercial_steam_engine.png b/static/browse/railcraft/commercial_steam_engine/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/commercial_steam_engine.png rename to static/browse/railcraft/commercial_steam_engine/icon.png diff --git a/prerender/browse/railcraft/commercial_steam_engine/index.html b/static/browse/railcraft/commercial_steam_engine/index.html similarity index 100% rename from prerender/browse/railcraft/commercial_steam_engine/index.html rename to static/browse/railcraft/commercial_steam_engine/index.html diff --git a/src/data/railcraft/9.5.0/images/concrete_slab.png b/static/browse/railcraft/concrete_slab/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/concrete_slab.png rename to static/browse/railcraft/concrete_slab/icon.png diff --git a/prerender/browse/railcraft/concrete_slab/index.html b/static/browse/railcraft/concrete_slab/index.html similarity index 100% rename from prerender/browse/railcraft/concrete_slab/index.html rename to static/browse/railcraft/concrete_slab/index.html diff --git a/src/data/railcraft/9.5.0/images/concrete_stairs.png b/static/browse/railcraft/concrete_stairs/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/concrete_stairs.png rename to static/browse/railcraft/concrete_stairs/icon.png diff --git a/prerender/browse/railcraft/concrete_stairs/index.html b/static/browse/railcraft/concrete_stairs/index.html similarity index 100% rename from prerender/browse/railcraft/concrete_stairs/index.html rename to static/browse/railcraft/concrete_stairs/index.html diff --git a/src/data/railcraft/9.5.0/images/concrete_wall.png b/static/browse/railcraft/concrete_wall/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/concrete_wall.png rename to static/browse/railcraft/concrete_wall/icon.png diff --git a/prerender/browse/railcraft/concrete_wall/index.html b/static/browse/railcraft/concrete_wall/index.html similarity index 100% rename from prerender/browse/railcraft/concrete_wall/index.html rename to static/browse/railcraft/concrete_wall/index.html diff --git a/src/data/railcraft/9.5.0/images/control_track.png b/static/browse/railcraft/control_track/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/control_track.png rename to static/browse/railcraft/control_track/icon.png diff --git a/prerender/browse/railcraft/control_track/index.html b/static/browse/railcraft/control_track/index.html similarity index 100% rename from prerender/browse/railcraft/control_track/index.html rename to static/browse/railcraft/control_track/index.html diff --git a/src/data/railcraft/9.5.0/images/controller_circuit.png b/static/browse/railcraft/controller_circuit/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/controller_circuit.png rename to static/browse/railcraft/controller_circuit/icon.png diff --git a/prerender/browse/railcraft/controller_circuit/index.html b/static/browse/railcraft/controller_circuit/index.html similarity index 100% rename from prerender/browse/railcraft/controller_circuit/index.html rename to static/browse/railcraft/controller_circuit/index.html diff --git a/src/data/railcraft/9.5.0/images/copper_ingot.png b/static/browse/railcraft/copper_ingot/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/copper_ingot.png rename to static/browse/railcraft/copper_ingot/icon.png diff --git a/prerender/browse/railcraft/copper_ingot/index.html b/static/browse/railcraft/copper_ingot/index.html similarity index 100% rename from prerender/browse/railcraft/copper_ingot/index.html rename to static/browse/railcraft/copper_ingot/index.html diff --git a/src/data/railcraft/9.5.0/images/copper_lantern.png b/static/browse/railcraft/copper_lantern/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/copper_lantern.png rename to static/browse/railcraft/copper_lantern/icon.png diff --git a/prerender/browse/railcraft/copper_lantern/index.html b/static/browse/railcraft/copper_lantern/index.html similarity index 100% rename from prerender/browse/railcraft/copper_lantern/index.html rename to static/browse/railcraft/copper_lantern/index.html diff --git a/src/data/railcraft/9.5.0/images/copper_nugget.png b/static/browse/railcraft/copper_nugget/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/copper_nugget.png rename to static/browse/railcraft/copper_nugget/icon.png diff --git a/prerender/browse/railcraft/copper_nugget/index.html b/static/browse/railcraft/copper_nugget/index.html similarity index 100% rename from prerender/browse/railcraft/copper_nugget/index.html rename to static/browse/railcraft/copper_nugget/index.html diff --git a/src/data/railcraft/9.5.0/images/copper_plate.png b/static/browse/railcraft/copper_plate/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/copper_plate.png rename to static/browse/railcraft/copper_plate/icon.png diff --git a/prerender/browse/railcraft/copper_plate/index.html b/static/browse/railcraft/copper_plate/index.html similarity index 100% rename from prerender/browse/railcraft/copper_plate/index.html rename to static/browse/railcraft/copper_plate/index.html diff --git a/src/data/railcraft/9.5.0/images/copper_slab.png b/static/browse/railcraft/copper_slab/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/copper_slab.png rename to static/browse/railcraft/copper_slab/icon.png diff --git a/prerender/browse/railcraft/copper_slab/index.html b/static/browse/railcraft/copper_slab/index.html similarity index 100% rename from prerender/browse/railcraft/copper_slab/index.html rename to static/browse/railcraft/copper_slab/index.html diff --git a/src/data/railcraft/9.5.0/images/copper_stairs.png b/static/browse/railcraft/copper_stairs/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/copper_stairs.png rename to static/browse/railcraft/copper_stairs/icon.png diff --git a/prerender/browse/railcraft/copper_stairs/index.html b/static/browse/railcraft/copper_stairs/index.html similarity index 100% rename from prerender/browse/railcraft/copper_stairs/index.html rename to static/browse/railcraft/copper_stairs/index.html diff --git a/src/data/railcraft/9.5.0/images/coupler_track.png b/static/browse/railcraft/coupler_track/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/coupler_track.png rename to static/browse/railcraft/coupler_track/icon.png diff --git a/prerender/browse/railcraft/coupler_track/index.html b/static/browse/railcraft/coupler_track/index.html similarity index 100% rename from prerender/browse/railcraft/coupler_track/index.html rename to static/browse/railcraft/coupler_track/index.html diff --git a/src/data/railcraft/9.5.0/images/cracked_firestone.png b/static/browse/railcraft/cracked_firestone/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/cracked_firestone.png rename to static/browse/railcraft/cracked_firestone/icon.png diff --git a/prerender/browse/railcraft/cracked_firestone/index.html b/static/browse/railcraft/cracked_firestone/index.html similarity index 100% rename from prerender/browse/railcraft/cracked_firestone/index.html rename to static/browse/railcraft/cracked_firestone/index.html diff --git a/src/data/railcraft/9.5.0/images/cracked_firestone_2.png b/static/browse/railcraft/cracked_firestone_2/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/cracked_firestone_2.png rename to static/browse/railcraft/cracked_firestone_2/icon.png diff --git a/src/data/railcraft/9.5.0/images/cracked_stone_brick_wall.png b/static/browse/railcraft/cracked_stone_brick_wall/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/cracked_stone_brick_wall.png rename to static/browse/railcraft/cracked_stone_brick_wall/icon.png diff --git a/prerender/browse/railcraft/cracked_stone_brick_wall/index.html b/static/browse/railcraft/cracked_stone_brick_wall/index.html similarity index 100% rename from prerender/browse/railcraft/cracked_stone_brick_wall/index.html rename to static/browse/railcraft/cracked_stone_brick_wall/index.html diff --git a/src/data/railcraft/9.5.0/images/creosote_block_slab.png b/static/browse/railcraft/creosote_block_slab/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/creosote_block_slab.png rename to static/browse/railcraft/creosote_block_slab/icon.png diff --git a/prerender/browse/railcraft/creosote_block_slab/index.html b/static/browse/railcraft/creosote_block_slab/index.html similarity index 100% rename from prerender/browse/railcraft/creosote_block_slab/index.html rename to static/browse/railcraft/creosote_block_slab/index.html diff --git a/src/data/railcraft/9.5.0/images/creosote_block_stairs.png b/static/browse/railcraft/creosote_block_stairs/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/creosote_block_stairs.png rename to static/browse/railcraft/creosote_block_stairs/icon.png diff --git a/prerender/browse/railcraft/creosote_block_stairs/index.html b/static/browse/railcraft/creosote_block_stairs/index.html similarity index 100% rename from prerender/browse/railcraft/creosote_block_stairs/index.html rename to static/browse/railcraft/creosote_block_stairs/index.html diff --git a/src/data/railcraft/9.5.0/images/creosote_bottle.png b/static/browse/railcraft/creosote_bottle/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/creosote_bottle.png rename to static/browse/railcraft/creosote_bottle/icon.png diff --git a/prerender/browse/railcraft/creosote_bottle/index.html b/static/browse/railcraft/creosote_bottle/index.html similarity index 100% rename from prerender/browse/railcraft/creosote_bottle/index.html rename to static/browse/railcraft/creosote_bottle/index.html diff --git a/src/data/railcraft/9.5.0/images/creosote_bucket.png b/static/browse/railcraft/creosote_bucket/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/creosote_bucket.png rename to static/browse/railcraft/creosote_bucket/icon.png diff --git a/prerender/browse/railcraft/creosote_bucket/index.html b/static/browse/railcraft/creosote_bucket/index.html similarity index 100% rename from prerender/browse/railcraft/creosote_bucket/index.html rename to static/browse/railcraft/creosote_bucket/index.html diff --git a/src/data/railcraft/9.5.0/images/creosote_can.png b/static/browse/railcraft/creosote_can/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/creosote_can.png rename to static/browse/railcraft/creosote_can/icon.png diff --git a/prerender/browse/railcraft/creosote_can/index.html b/static/browse/railcraft/creosote_can/index.html similarity index 100% rename from prerender/browse/railcraft/creosote_can/index.html rename to static/browse/railcraft/creosote_can/index.html diff --git a/src/data/railcraft/9.5.0/images/creosote_capsule.png b/static/browse/railcraft/creosote_capsule/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/creosote_capsule.png rename to static/browse/railcraft/creosote_capsule/icon.png diff --git a/prerender/browse/railcraft/creosote_capsule/index.html b/static/browse/railcraft/creosote_capsule/index.html similarity index 100% rename from prerender/browse/railcraft/creosote_capsule/index.html rename to static/browse/railcraft/creosote_capsule/index.html diff --git a/src/data/railcraft/9.5.0/images/creosote_capsule_2.png b/static/browse/railcraft/creosote_capsule_2/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/creosote_capsule_2.png rename to static/browse/railcraft/creosote_capsule_2/icon.png diff --git a/src/data/railcraft/9.5.0/images/creosote_cell.png b/static/browse/railcraft/creosote_cell/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/creosote_cell.png rename to static/browse/railcraft/creosote_cell/icon.png diff --git a/prerender/browse/railcraft/creosote_cell/index.html b/static/browse/railcraft/creosote_cell/index.html similarity index 100% rename from prerender/browse/railcraft/creosote_cell/index.html rename to static/browse/railcraft/creosote_cell/index.html diff --git a/src/data/railcraft/9.5.0/images/creosote_wood_block.png b/static/browse/railcraft/creosote_wood_block/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/creosote_wood_block.png rename to static/browse/railcraft/creosote_wood_block/icon.png diff --git a/prerender/browse/railcraft/creosote_wood_block/index.html b/static/browse/railcraft/creosote_wood_block/index.html similarity index 100% rename from prerender/browse/railcraft/creosote_wood_block/index.html rename to static/browse/railcraft/creosote_wood_block/index.html diff --git a/src/data/railcraft/9.5.0/images/crowbar.png b/static/browse/railcraft/crowbar/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/crowbar.png rename to static/browse/railcraft/crowbar/icon.png diff --git a/prerender/browse/railcraft/crowbar/index.html b/static/browse/railcraft/crowbar/index.html similarity index 100% rename from prerender/browse/railcraft/crowbar/index.html rename to static/browse/railcraft/crowbar/index.html diff --git a/src/data/railcraft/9.5.0/images/crushed_obsidian.png b/static/browse/railcraft/crushed_obsidian/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/crushed_obsidian.png rename to static/browse/railcraft/crushed_obsidian/icon.png diff --git a/prerender/browse/railcraft/crushed_obsidian/index.html b/static/browse/railcraft/crushed_obsidian/index.html similarity index 100% rename from prerender/browse/railcraft/crushed_obsidian/index.html rename to static/browse/railcraft/crushed_obsidian/index.html diff --git a/src/data/railcraft/9.5.0/images/cut_firestone.png b/static/browse/railcraft/cut_firestone/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/cut_firestone.png rename to static/browse/railcraft/cut_firestone/icon.png diff --git a/prerender/browse/railcraft/cut_firestone/index.html b/static/browse/railcraft/cut_firestone/index.html similarity index 100% rename from prerender/browse/railcraft/cut_firestone/index.html rename to static/browse/railcraft/cut_firestone/index.html diff --git a/src/data/railcraft/9.5.0/images/cyan_metal_platform.png b/static/browse/railcraft/cyan_metal_platform/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/cyan_metal_platform.png rename to static/browse/railcraft/cyan_metal_platform/icon.png diff --git a/prerender/browse/railcraft/cyan_metal_platform/index.html b/static/browse/railcraft/cyan_metal_platform/index.html similarity index 100% rename from prerender/browse/railcraft/cyan_metal_platform/index.html rename to static/browse/railcraft/cyan_metal_platform/index.html diff --git a/src/data/railcraft/9.5.0/images/cyan_metal_post.png b/static/browse/railcraft/cyan_metal_post/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/cyan_metal_post.png rename to static/browse/railcraft/cyan_metal_post/icon.png diff --git a/prerender/browse/railcraft/cyan_metal_post/index.html b/static/browse/railcraft/cyan_metal_post/index.html similarity index 100% rename from prerender/browse/railcraft/cyan_metal_post/index.html rename to static/browse/railcraft/cyan_metal_post/index.html diff --git a/src/data/railcraft/9.5.0/images/dark_diamond_ore.png b/static/browse/railcraft/dark_diamond_ore/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/dark_diamond_ore.png rename to static/browse/railcraft/dark_diamond_ore/icon.png diff --git a/prerender/browse/railcraft/dark_diamond_ore/index.html b/static/browse/railcraft/dark_diamond_ore/index.html similarity index 100% rename from prerender/browse/railcraft/dark_diamond_ore/index.html rename to static/browse/railcraft/dark_diamond_ore/index.html diff --git a/src/data/railcraft/9.5.0/images/dark_emerald_ore.png b/static/browse/railcraft/dark_emerald_ore/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/dark_emerald_ore.png rename to static/browse/railcraft/dark_emerald_ore/icon.png diff --git a/prerender/browse/railcraft/dark_emerald_ore/index.html b/static/browse/railcraft/dark_emerald_ore/index.html similarity index 100% rename from prerender/browse/railcraft/dark_emerald_ore/index.html rename to static/browse/railcraft/dark_emerald_ore/index.html diff --git a/src/data/railcraft/9.5.0/images/dark_lapis_lazuli_ore.png b/static/browse/railcraft/dark_lapis_lazuli_ore/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/dark_lapis_lazuli_ore.png rename to static/browse/railcraft/dark_lapis_lazuli_ore/icon.png diff --git a/prerender/browse/railcraft/dark_lapis_lazuli_ore/index.html b/static/browse/railcraft/dark_lapis_lazuli_ore/index.html similarity index 100% rename from prerender/browse/railcraft/dark_lapis_lazuli_ore/index.html rename to static/browse/railcraft/dark_lapis_lazuli_ore/index.html diff --git a/src/data/railcraft/9.5.0/images/detector_advanced.png b/static/browse/railcraft/detector_advanced/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/detector_advanced.png rename to static/browse/railcraft/detector_advanced/icon.png diff --git a/prerender/browse/railcraft/detector_advanced/index.html b/static/browse/railcraft/detector_advanced/index.html similarity index 100% rename from prerender/browse/railcraft/detector_advanced/index.html rename to static/browse/railcraft/detector_advanced/index.html diff --git a/src/data/railcraft/9.5.0/images/detector_age.png b/static/browse/railcraft/detector_age/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/detector_age.png rename to static/browse/railcraft/detector_age/icon.png diff --git a/prerender/browse/railcraft/detector_age/index.html b/static/browse/railcraft/detector_age/index.html similarity index 100% rename from prerender/browse/railcraft/detector_age/index.html rename to static/browse/railcraft/detector_age/index.html diff --git a/src/data/railcraft/9.5.0/images/detector_animal.png b/static/browse/railcraft/detector_animal/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/detector_animal.png rename to static/browse/railcraft/detector_animal/icon.png diff --git a/prerender/browse/railcraft/detector_animal/index.html b/static/browse/railcraft/detector_animal/index.html similarity index 100% rename from prerender/browse/railcraft/detector_animal/index.html rename to static/browse/railcraft/detector_animal/index.html diff --git a/src/data/railcraft/9.5.0/images/detector_any.png b/static/browse/railcraft/detector_any/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/detector_any.png rename to static/browse/railcraft/detector_any/icon.png diff --git a/prerender/browse/railcraft/detector_any/index.html b/static/browse/railcraft/detector_any/index.html similarity index 100% rename from prerender/browse/railcraft/detector_any/index.html rename to static/browse/railcraft/detector_any/index.html diff --git a/src/data/railcraft/9.5.0/images/detector_empty.png b/static/browse/railcraft/detector_empty/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/detector_empty.png rename to static/browse/railcraft/detector_empty/icon.png diff --git a/prerender/browse/railcraft/detector_empty/index.html b/static/browse/railcraft/detector_empty/index.html similarity index 100% rename from prerender/browse/railcraft/detector_empty/index.html rename to static/browse/railcraft/detector_empty/index.html diff --git a/src/data/railcraft/9.5.0/images/detector_energy.png b/static/browse/railcraft/detector_energy/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/detector_energy.png rename to static/browse/railcraft/detector_energy/icon.png diff --git a/prerender/browse/railcraft/detector_energy/index.html b/static/browse/railcraft/detector_energy/index.html similarity index 100% rename from prerender/browse/railcraft/detector_energy/index.html rename to static/browse/railcraft/detector_energy/index.html diff --git a/src/data/railcraft/9.5.0/images/detector_explosive.png b/static/browse/railcraft/detector_explosive/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/detector_explosive.png rename to static/browse/railcraft/detector_explosive/icon.png diff --git a/prerender/browse/railcraft/detector_explosive/index.html b/static/browse/railcraft/detector_explosive/index.html similarity index 100% rename from prerender/browse/railcraft/detector_explosive/index.html rename to static/browse/railcraft/detector_explosive/index.html diff --git a/src/data/railcraft/9.5.0/images/detector_item.png b/static/browse/railcraft/detector_item/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/detector_item.png rename to static/browse/railcraft/detector_item/icon.png diff --git a/prerender/browse/railcraft/detector_item/index.html b/static/browse/railcraft/detector_item/index.html similarity index 100% rename from prerender/browse/railcraft/detector_item/index.html rename to static/browse/railcraft/detector_item/index.html diff --git a/src/data/railcraft/9.5.0/images/detector_locomotive.png b/static/browse/railcraft/detector_locomotive/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/detector_locomotive.png rename to static/browse/railcraft/detector_locomotive/icon.png diff --git a/prerender/browse/railcraft/detector_locomotive/index.html b/static/browse/railcraft/detector_locomotive/index.html similarity index 100% rename from prerender/browse/railcraft/detector_locomotive/index.html rename to static/browse/railcraft/detector_locomotive/index.html diff --git a/src/data/railcraft/9.5.0/images/detector_mob.png b/static/browse/railcraft/detector_mob/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/detector_mob.png rename to static/browse/railcraft/detector_mob/icon.png diff --git a/prerender/browse/railcraft/detector_mob/index.html b/static/browse/railcraft/detector_mob/index.html similarity index 100% rename from prerender/browse/railcraft/detector_mob/index.html rename to static/browse/railcraft/detector_mob/index.html diff --git a/src/data/railcraft/9.5.0/images/detector_player.png b/static/browse/railcraft/detector_player/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/detector_player.png rename to static/browse/railcraft/detector_player/icon.png diff --git a/prerender/browse/railcraft/detector_player/index.html b/static/browse/railcraft/detector_player/index.html similarity index 100% rename from prerender/browse/railcraft/detector_player/index.html rename to static/browse/railcraft/detector_player/index.html diff --git a/src/data/railcraft/9.5.0/images/detector_powered.png b/static/browse/railcraft/detector_powered/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/detector_powered.png rename to static/browse/railcraft/detector_powered/icon.png diff --git a/prerender/browse/railcraft/detector_powered/index.html b/static/browse/railcraft/detector_powered/index.html similarity index 100% rename from prerender/browse/railcraft/detector_powered/index.html rename to static/browse/railcraft/detector_powered/index.html diff --git a/src/data/railcraft/9.5.0/images/detector_routing.png b/static/browse/railcraft/detector_routing/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/detector_routing.png rename to static/browse/railcraft/detector_routing/icon.png diff --git a/prerender/browse/railcraft/detector_routing/index.html b/static/browse/railcraft/detector_routing/index.html similarity index 100% rename from prerender/browse/railcraft/detector_routing/index.html rename to static/browse/railcraft/detector_routing/index.html diff --git a/src/data/railcraft/9.5.0/images/detector_sheep.png b/static/browse/railcraft/detector_sheep/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/detector_sheep.png rename to static/browse/railcraft/detector_sheep/icon.png diff --git a/prerender/browse/railcraft/detector_sheep/index.html b/static/browse/railcraft/detector_sheep/index.html similarity index 100% rename from prerender/browse/railcraft/detector_sheep/index.html rename to static/browse/railcraft/detector_sheep/index.html diff --git a/src/data/railcraft/9.5.0/images/detector_tank.png b/static/browse/railcraft/detector_tank/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/detector_tank.png rename to static/browse/railcraft/detector_tank/icon.png diff --git a/prerender/browse/railcraft/detector_tank/index.html b/static/browse/railcraft/detector_tank/index.html similarity index 100% rename from prerender/browse/railcraft/detector_tank/index.html rename to static/browse/railcraft/detector_tank/index.html diff --git a/src/data/railcraft/9.5.0/images/detector_train.png b/static/browse/railcraft/detector_train/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/detector_train.png rename to static/browse/railcraft/detector_train/icon.png diff --git a/prerender/browse/railcraft/detector_train/index.html b/static/browse/railcraft/detector_train/index.html similarity index 100% rename from prerender/browse/railcraft/detector_train/index.html rename to static/browse/railcraft/detector_train/index.html diff --git a/src/data/railcraft/9.5.0/images/detector_villager.png b/static/browse/railcraft/detector_villager/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/detector_villager.png rename to static/browse/railcraft/detector_villager/icon.png diff --git a/prerender/browse/railcraft/detector_villager/index.html b/static/browse/railcraft/detector_villager/index.html similarity index 100% rename from prerender/browse/railcraft/detector_villager/index.html rename to static/browse/railcraft/detector_villager/index.html diff --git a/src/data/railcraft/9.5.0/images/diamond_bore_head.png b/static/browse/railcraft/diamond_bore_head/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/diamond_bore_head.png rename to static/browse/railcraft/diamond_bore_head/icon.png diff --git a/prerender/browse/railcraft/diamond_bore_head/index.html b/static/browse/railcraft/diamond_bore_head/index.html similarity index 100% rename from prerender/browse/railcraft/diamond_bore_head/index.html rename to static/browse/railcraft/diamond_bore_head/index.html diff --git a/src/data/railcraft/9.5.0/images/diamond_slab.png b/static/browse/railcraft/diamond_slab/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/diamond_slab.png rename to static/browse/railcraft/diamond_slab/icon.png diff --git a/prerender/browse/railcraft/diamond_slab/index.html b/static/browse/railcraft/diamond_slab/index.html similarity index 100% rename from prerender/browse/railcraft/diamond_slab/index.html rename to static/browse/railcraft/diamond_slab/index.html diff --git a/src/data/railcraft/9.5.0/images/diamond_stairs.png b/static/browse/railcraft/diamond_stairs/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/diamond_stairs.png rename to static/browse/railcraft/diamond_stairs/icon.png diff --git a/prerender/browse/railcraft/diamond_stairs/index.html b/static/browse/railcraft/diamond_stairs/index.html similarity index 100% rename from prerender/browse/railcraft/diamond_stairs/index.html rename to static/browse/railcraft/diamond_stairs/index.html diff --git a/src/data/railcraft/9.5.0/images/diamond_wall.png b/static/browse/railcraft/diamond_wall/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/diamond_wall.png rename to static/browse/railcraft/diamond_wall/icon.png diff --git a/prerender/browse/railcraft/diamond_wall/index.html b/static/browse/railcraft/diamond_wall/index.html similarity index 100% rename from prerender/browse/railcraft/diamond_wall/index.html rename to static/browse/railcraft/diamond_wall/index.html diff --git a/src/data/railcraft/9.5.0/images/directional_detector_track.png b/static/browse/railcraft/directional_detector_track/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/directional_detector_track.png rename to static/browse/railcraft/directional_detector_track/icon.png diff --git a/prerender/browse/railcraft/directional_detector_track/index.html b/static/browse/railcraft/directional_detector_track/index.html similarity index 100% rename from prerender/browse/railcraft/directional_detector_track/index.html rename to static/browse/railcraft/directional_detector_track/index.html diff --git a/src/data/railcraft/9.5.0/images/disembarking_track.png b/static/browse/railcraft/disembarking_track/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/disembarking_track.png rename to static/browse/railcraft/disembarking_track/icon.png diff --git a/prerender/browse/railcraft/disembarking_track/index.html b/static/browse/railcraft/disembarking_track/index.html similarity index 100% rename from prerender/browse/railcraft/disembarking_track/index.html rename to static/browse/railcraft/disembarking_track/index.html diff --git a/src/data/railcraft/9.5.0/images/disposal_track.png b/static/browse/railcraft/disposal_track/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/disposal_track.png rename to static/browse/railcraft/disposal_track/icon.png diff --git a/prerender/browse/railcraft/disposal_track/index.html b/static/browse/railcraft/disposal_track/index.html similarity index 100% rename from prerender/browse/railcraft/disposal_track/index.html rename to static/browse/railcraft/disposal_track/index.html diff --git a/src/data/railcraft/9.5.0/images/distant_signal.png b/static/browse/railcraft/distant_signal/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/distant_signal.png rename to static/browse/railcraft/distant_signal/icon.png diff --git a/prerender/browse/railcraft/distant_signal/index.html b/static/browse/railcraft/distant_signal/index.html similarity index 100% rename from prerender/browse/railcraft/distant_signal/index.html rename to static/browse/railcraft/distant_signal/index.html diff --git a/src/data/railcraft/9.5.0/images/dual_head_block_signal.png b/static/browse/railcraft/dual_head_block_signal/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/dual_head_block_signal.png rename to static/browse/railcraft/dual_head_block_signal/icon.png diff --git a/prerender/browse/railcraft/dual_head_block_signal/index.html b/static/browse/railcraft/dual_head_block_signal/index.html similarity index 100% rename from prerender/browse/railcraft/dual_head_block_signal/index.html rename to static/browse/railcraft/dual_head_block_signal/index.html diff --git a/src/data/railcraft/9.5.0/images/dual_head_distant_signal.png b/static/browse/railcraft/dual_head_distant_signal/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/dual_head_distant_signal.png rename to static/browse/railcraft/dual_head_distant_signal/icon.png diff --git a/prerender/browse/railcraft/dual_head_distant_signal/index.html b/static/browse/railcraft/dual_head_distant_signal/index.html similarity index 100% rename from prerender/browse/railcraft/dual_head_distant_signal/index.html rename to static/browse/railcraft/dual_head_distant_signal/index.html diff --git a/src/data/railcraft/9.5.0/images/electric_feeder_unit.png b/static/browse/railcraft/electric_feeder_unit/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/electric_feeder_unit.png rename to static/browse/railcraft/electric_feeder_unit/icon.png diff --git a/prerender/browse/railcraft/electric_feeder_unit/index.html b/static/browse/railcraft/electric_feeder_unit/index.html similarity index 100% rename from prerender/browse/railcraft/electric_feeder_unit/index.html rename to static/browse/railcraft/electric_feeder_unit/index.html diff --git a/src/data/railcraft/9.5.0/images/electric_junction_track.png b/static/browse/railcraft/electric_junction_track/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/electric_junction_track.png rename to static/browse/railcraft/electric_junction_track/icon.png diff --git a/prerender/browse/railcraft/electric_junction_track/index.html b/static/browse/railcraft/electric_junction_track/index.html similarity index 100% rename from prerender/browse/railcraft/electric_junction_track/index.html rename to static/browse/railcraft/electric_junction_track/index.html diff --git a/src/data/railcraft/9.5.0/images/electric_locomotive.png b/static/browse/railcraft/electric_locomotive/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/electric_locomotive.png rename to static/browse/railcraft/electric_locomotive/icon.png diff --git a/prerender/browse/railcraft/electric_locomotive/index.html b/static/browse/railcraft/electric_locomotive/index.html similarity index 100% rename from prerender/browse/railcraft/electric_locomotive/index.html rename to static/browse/railcraft/electric_locomotive/index.html diff --git a/src/data/railcraft/9.5.0/images/electric_meter.png b/static/browse/railcraft/electric_meter/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/electric_meter.png rename to static/browse/railcraft/electric_meter/icon.png diff --git a/prerender/browse/railcraft/electric_meter/index.html b/static/browse/railcraft/electric_meter/index.html similarity index 100% rename from prerender/browse/railcraft/electric_meter/index.html rename to static/browse/railcraft/electric_meter/index.html diff --git a/src/data/railcraft/9.5.0/images/electric_rail.png b/static/browse/railcraft/electric_rail/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/electric_rail.png rename to static/browse/railcraft/electric_rail/icon.png diff --git a/prerender/browse/railcraft/electric_rail/index.html b/static/browse/railcraft/electric_rail/index.html similarity index 100% rename from prerender/browse/railcraft/electric_rail/index.html rename to static/browse/railcraft/electric_rail/index.html diff --git a/src/data/railcraft/9.5.0/images/electric_shunting_wire.png b/static/browse/railcraft/electric_shunting_wire/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/electric_shunting_wire.png rename to static/browse/railcraft/electric_shunting_wire/icon.png diff --git a/prerender/browse/railcraft/electric_shunting_wire/index.html b/static/browse/railcraft/electric_shunting_wire/index.html similarity index 100% rename from prerender/browse/railcraft/electric_shunting_wire/index.html rename to static/browse/railcraft/electric_shunting_wire/index.html diff --git a/src/data/railcraft/9.5.0/images/electric_switch_track.png b/static/browse/railcraft/electric_switch_track/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/electric_switch_track.png rename to static/browse/railcraft/electric_switch_track/icon.png diff --git a/prerender/browse/railcraft/electric_switch_track/index.html b/static/browse/railcraft/electric_switch_track/index.html similarity index 100% rename from prerender/browse/railcraft/electric_switch_track/index.html rename to static/browse/railcraft/electric_switch_track/index.html diff --git a/src/data/railcraft/9.5.0/images/electric_track.png b/static/browse/railcraft/electric_track/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/electric_track.png rename to static/browse/railcraft/electric_track/icon.png diff --git a/prerender/browse/railcraft/electric_track/index.html b/static/browse/railcraft/electric_track/index.html similarity index 100% rename from prerender/browse/railcraft/electric_track/index.html rename to static/browse/railcraft/electric_track/index.html diff --git a/src/data/railcraft/9.5.0/images/electric_wye_track.png b/static/browse/railcraft/electric_wye_track/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/electric_wye_track.png rename to static/browse/railcraft/electric_wye_track/icon.png diff --git a/prerender/browse/railcraft/electric_wye_track/index.html b/static/browse/railcraft/electric_wye_track/index.html similarity index 100% rename from prerender/browse/railcraft/electric_wye_track/index.html rename to static/browse/railcraft/electric_wye_track/index.html diff --git a/src/data/railcraft/9.5.0/images/elevator_track.png b/static/browse/railcraft/elevator_track/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/elevator_track.png rename to static/browse/railcraft/elevator_track/icon.png diff --git a/prerender/browse/railcraft/elevator_track/index.html b/static/browse/railcraft/elevator_track/index.html similarity index 100% rename from prerender/browse/railcraft/elevator_track/index.html rename to static/browse/railcraft/elevator_track/index.html diff --git a/src/data/railcraft/9.5.0/images/embarking_track.png b/static/browse/railcraft/embarking_track/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/embarking_track.png rename to static/browse/railcraft/embarking_track/icon.png diff --git a/prerender/browse/railcraft/embarking_track/index.html b/static/browse/railcraft/embarking_track/index.html similarity index 100% rename from prerender/browse/railcraft/embarking_track/index.html rename to static/browse/railcraft/embarking_track/index.html diff --git a/src/data/railcraft/9.5.0/images/emblem.png b/static/browse/railcraft/emblem/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/emblem.png rename to static/browse/railcraft/emblem/icon.png diff --git a/prerender/browse/railcraft/emblem/index.html b/static/browse/railcraft/emblem/index.html similarity index 100% rename from prerender/browse/railcraft/emblem/index.html rename to static/browse/railcraft/emblem/index.html diff --git a/src/data/railcraft/9.5.0/images/engineer_s_overalls.png b/static/browse/railcraft/engineer_s_overalls/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/engineer_s_overalls.png rename to static/browse/railcraft/engineer_s_overalls/icon.png diff --git a/prerender/browse/railcraft/engineer_s_overalls/index.html b/static/browse/railcraft/engineer_s_overalls/index.html similarity index 100% rename from prerender/browse/railcraft/engineer_s_overalls/index.html rename to static/browse/railcraft/engineer_s_overalls/index.html diff --git a/src/data/railcraft/9.5.0/images/engraving_bench.png b/static/browse/railcraft/engraving_bench/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/engraving_bench.png rename to static/browse/railcraft/engraving_bench/icon.png diff --git a/prerender/browse/railcraft/engraving_bench/index.html b/static/browse/railcraft/engraving_bench/index.html similarity index 100% rename from prerender/browse/railcraft/engraving_bench/index.html rename to static/browse/railcraft/engraving_bench/index.html diff --git a/src/data/railcraft/9.5.0/images/etched_abyssal_stone.png b/static/browse/railcraft/etched_abyssal_stone/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/etched_abyssal_stone.png rename to static/browse/railcraft/etched_abyssal_stone/icon.png diff --git a/prerender/browse/railcraft/etched_abyssal_stone/index.html b/static/browse/railcraft/etched_abyssal_stone/index.html similarity index 100% rename from prerender/browse/railcraft/etched_abyssal_stone/index.html rename to static/browse/railcraft/etched_abyssal_stone/index.html diff --git a/src/data/railcraft/9.5.0/images/etched_bleached_bone_stone.png b/static/browse/railcraft/etched_bleached_bone_stone/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/etched_bleached_bone_stone.png rename to static/browse/railcraft/etched_bleached_bone_stone/icon.png diff --git a/prerender/browse/railcraft/etched_bleached_bone_stone/index.html b/static/browse/railcraft/etched_bleached_bone_stone/index.html similarity index 100% rename from prerender/browse/railcraft/etched_bleached_bone_stone/index.html rename to static/browse/railcraft/etched_bleached_bone_stone/index.html diff --git a/src/data/railcraft/9.5.0/images/etched_blood_stained_stone.png b/static/browse/railcraft/etched_blood_stained_stone/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/etched_blood_stained_stone.png rename to static/browse/railcraft/etched_blood_stained_stone/icon.png diff --git a/prerender/browse/railcraft/etched_blood_stained_stone/index.html b/static/browse/railcraft/etched_blood_stained_stone/index.html similarity index 100% rename from prerender/browse/railcraft/etched_blood_stained_stone/index.html rename to static/browse/railcraft/etched_blood_stained_stone/index.html diff --git a/src/data/railcraft/9.5.0/images/etched_frost_bound_stone.png b/static/browse/railcraft/etched_frost_bound_stone/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/etched_frost_bound_stone.png rename to static/browse/railcraft/etched_frost_bound_stone/icon.png diff --git a/prerender/browse/railcraft/etched_frost_bound_stone/index.html b/static/browse/railcraft/etched_frost_bound_stone/index.html similarity index 100% rename from prerender/browse/railcraft/etched_frost_bound_stone/index.html rename to static/browse/railcraft/etched_frost_bound_stone/index.html diff --git a/src/data/railcraft/9.5.0/images/etched_infernal_stone.png b/static/browse/railcraft/etched_infernal_stone/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/etched_infernal_stone.png rename to static/browse/railcraft/etched_infernal_stone/icon.png diff --git a/prerender/browse/railcraft/etched_infernal_stone/index.html b/static/browse/railcraft/etched_infernal_stone/index.html similarity index 100% rename from prerender/browse/railcraft/etched_infernal_stone/index.html rename to static/browse/railcraft/etched_infernal_stone/index.html diff --git a/src/data/railcraft/9.5.0/images/etched_nether_stone.png b/static/browse/railcraft/etched_nether_stone/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/etched_nether_stone.png rename to static/browse/railcraft/etched_nether_stone/icon.png diff --git a/prerender/browse/railcraft/etched_nether_stone/index.html b/static/browse/railcraft/etched_nether_stone/index.html similarity index 100% rename from prerender/browse/railcraft/etched_nether_stone/index.html rename to static/browse/railcraft/etched_nether_stone/index.html diff --git a/src/data/railcraft/9.5.0/images/etched_quarried_stone.png b/static/browse/railcraft/etched_quarried_stone/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/etched_quarried_stone.png rename to static/browse/railcraft/etched_quarried_stone/icon.png diff --git a/prerender/browse/railcraft/etched_quarried_stone/index.html b/static/browse/railcraft/etched_quarried_stone/index.html similarity index 100% rename from prerender/browse/railcraft/etched_quarried_stone/index.html rename to static/browse/railcraft/etched_quarried_stone/index.html diff --git a/src/data/railcraft/9.5.0/images/etched_sandy_stone.png b/static/browse/railcraft/etched_sandy_stone/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/etched_sandy_stone.png rename to static/browse/railcraft/etched_sandy_stone/icon.png diff --git a/prerender/browse/railcraft/etched_sandy_stone/index.html b/static/browse/railcraft/etched_sandy_stone/index.html similarity index 100% rename from prerender/browse/railcraft/etched_sandy_stone/index.html rename to static/browse/railcraft/etched_sandy_stone/index.html diff --git a/src/data/railcraft/9.5.0/images/feed_station.png b/static/browse/railcraft/feed_station/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/feed_station.png rename to static/browse/railcraft/feed_station/icon.png diff --git a/prerender/browse/railcraft/feed_station/index.html b/static/browse/railcraft/feed_station/index.html similarity index 100% rename from prerender/browse/railcraft/feed_station/index.html rename to static/browse/railcraft/feed_station/index.html diff --git a/src/data/railcraft/9.5.0/images/firestone_ore.png b/static/browse/railcraft/firestone_ore/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/firestone_ore.png rename to static/browse/railcraft/firestone_ore/icon.png diff --git a/prerender/browse/railcraft/firestone_ore/index.html b/static/browse/railcraft/firestone_ore/index.html similarity index 100% rename from prerender/browse/railcraft/firestone_ore/index.html rename to static/browse/railcraft/firestone_ore/index.html diff --git a/src/data/railcraft/9.5.0/images/fitted_abyssal_stone.png b/static/browse/railcraft/fitted_abyssal_stone/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/fitted_abyssal_stone.png rename to static/browse/railcraft/fitted_abyssal_stone/icon.png diff --git a/prerender/browse/railcraft/fitted_abyssal_stone/index.html b/static/browse/railcraft/fitted_abyssal_stone/index.html similarity index 100% rename from prerender/browse/railcraft/fitted_abyssal_stone/index.html rename to static/browse/railcraft/fitted_abyssal_stone/index.html diff --git a/src/data/railcraft/9.5.0/images/fitted_abyssal_stone_slab.png b/static/browse/railcraft/fitted_abyssal_stone_slab/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/fitted_abyssal_stone_slab.png rename to static/browse/railcraft/fitted_abyssal_stone_slab/icon.png diff --git a/prerender/browse/railcraft/fitted_abyssal_stone_slab/index.html b/static/browse/railcraft/fitted_abyssal_stone_slab/index.html similarity index 100% rename from prerender/browse/railcraft/fitted_abyssal_stone_slab/index.html rename to static/browse/railcraft/fitted_abyssal_stone_slab/index.html diff --git a/src/data/railcraft/9.5.0/images/fitted_abyssal_stone_stairs.png b/static/browse/railcraft/fitted_abyssal_stone_stairs/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/fitted_abyssal_stone_stairs.png rename to static/browse/railcraft/fitted_abyssal_stone_stairs/icon.png diff --git a/prerender/browse/railcraft/fitted_abyssal_stone_stairs/index.html b/static/browse/railcraft/fitted_abyssal_stone_stairs/index.html similarity index 100% rename from prerender/browse/railcraft/fitted_abyssal_stone_stairs/index.html rename to static/browse/railcraft/fitted_abyssal_stone_stairs/index.html diff --git a/src/data/railcraft/9.5.0/images/fitted_bleached_bone_stone.png b/static/browse/railcraft/fitted_bleached_bone_stone/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/fitted_bleached_bone_stone.png rename to static/browse/railcraft/fitted_bleached_bone_stone/icon.png diff --git a/prerender/browse/railcraft/fitted_bleached_bone_stone/index.html b/static/browse/railcraft/fitted_bleached_bone_stone/index.html similarity index 100% rename from prerender/browse/railcraft/fitted_bleached_bone_stone/index.html rename to static/browse/railcraft/fitted_bleached_bone_stone/index.html diff --git a/src/data/railcraft/9.5.0/images/fitted_bleached_bone_stone_slab.png b/static/browse/railcraft/fitted_bleached_bone_stone_slab/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/fitted_bleached_bone_stone_slab.png rename to static/browse/railcraft/fitted_bleached_bone_stone_slab/icon.png diff --git a/prerender/browse/railcraft/fitted_bleached_bone_stone_slab/index.html b/static/browse/railcraft/fitted_bleached_bone_stone_slab/index.html similarity index 100% rename from prerender/browse/railcraft/fitted_bleached_bone_stone_slab/index.html rename to static/browse/railcraft/fitted_bleached_bone_stone_slab/index.html diff --git a/src/data/railcraft/9.5.0/images/fitted_bleached_bone_stone_stairs.png b/static/browse/railcraft/fitted_bleached_bone_stone_stairs/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/fitted_bleached_bone_stone_stairs.png rename to static/browse/railcraft/fitted_bleached_bone_stone_stairs/icon.png diff --git a/prerender/browse/railcraft/fitted_bleached_bone_stone_stairs/index.html b/static/browse/railcraft/fitted_bleached_bone_stone_stairs/index.html similarity index 100% rename from prerender/browse/railcraft/fitted_bleached_bone_stone_stairs/index.html rename to static/browse/railcraft/fitted_bleached_bone_stone_stairs/index.html diff --git a/src/data/railcraft/9.5.0/images/fitted_blood_stained_stone.png b/static/browse/railcraft/fitted_blood_stained_stone/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/fitted_blood_stained_stone.png rename to static/browse/railcraft/fitted_blood_stained_stone/icon.png diff --git a/prerender/browse/railcraft/fitted_blood_stained_stone/index.html b/static/browse/railcraft/fitted_blood_stained_stone/index.html similarity index 100% rename from prerender/browse/railcraft/fitted_blood_stained_stone/index.html rename to static/browse/railcraft/fitted_blood_stained_stone/index.html diff --git a/src/data/railcraft/9.5.0/images/fitted_blood_stained_stone_slab.png b/static/browse/railcraft/fitted_blood_stained_stone_slab/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/fitted_blood_stained_stone_slab.png rename to static/browse/railcraft/fitted_blood_stained_stone_slab/icon.png diff --git a/prerender/browse/railcraft/fitted_blood_stained_stone_slab/index.html b/static/browse/railcraft/fitted_blood_stained_stone_slab/index.html similarity index 100% rename from prerender/browse/railcraft/fitted_blood_stained_stone_slab/index.html rename to static/browse/railcraft/fitted_blood_stained_stone_slab/index.html diff --git a/src/data/railcraft/9.5.0/images/fitted_blood_stained_stone_stairs.png b/static/browse/railcraft/fitted_blood_stained_stone_stairs/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/fitted_blood_stained_stone_stairs.png rename to static/browse/railcraft/fitted_blood_stained_stone_stairs/icon.png diff --git a/prerender/browse/railcraft/fitted_blood_stained_stone_stairs/index.html b/static/browse/railcraft/fitted_blood_stained_stone_stairs/index.html similarity index 100% rename from prerender/browse/railcraft/fitted_blood_stained_stone_stairs/index.html rename to static/browse/railcraft/fitted_blood_stained_stone_stairs/index.html diff --git a/src/data/railcraft/9.5.0/images/fitted_frost_bound_stone.png b/static/browse/railcraft/fitted_frost_bound_stone/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/fitted_frost_bound_stone.png rename to static/browse/railcraft/fitted_frost_bound_stone/icon.png diff --git a/prerender/browse/railcraft/fitted_frost_bound_stone/index.html b/static/browse/railcraft/fitted_frost_bound_stone/index.html similarity index 100% rename from prerender/browse/railcraft/fitted_frost_bound_stone/index.html rename to static/browse/railcraft/fitted_frost_bound_stone/index.html diff --git a/src/data/railcraft/9.5.0/images/fitted_frost_bound_stone_slab.png b/static/browse/railcraft/fitted_frost_bound_stone_slab/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/fitted_frost_bound_stone_slab.png rename to static/browse/railcraft/fitted_frost_bound_stone_slab/icon.png diff --git a/prerender/browse/railcraft/fitted_frost_bound_stone_slab/index.html b/static/browse/railcraft/fitted_frost_bound_stone_slab/index.html similarity index 100% rename from prerender/browse/railcraft/fitted_frost_bound_stone_slab/index.html rename to static/browse/railcraft/fitted_frost_bound_stone_slab/index.html diff --git a/src/data/railcraft/9.5.0/images/fitted_frost_bound_stone_stairs.png b/static/browse/railcraft/fitted_frost_bound_stone_stairs/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/fitted_frost_bound_stone_stairs.png rename to static/browse/railcraft/fitted_frost_bound_stone_stairs/icon.png diff --git a/prerender/browse/railcraft/fitted_frost_bound_stone_stairs/index.html b/static/browse/railcraft/fitted_frost_bound_stone_stairs/index.html similarity index 100% rename from prerender/browse/railcraft/fitted_frost_bound_stone_stairs/index.html rename to static/browse/railcraft/fitted_frost_bound_stone_stairs/index.html diff --git a/src/data/railcraft/9.5.0/images/fitted_infernal_stone.png b/static/browse/railcraft/fitted_infernal_stone/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/fitted_infernal_stone.png rename to static/browse/railcraft/fitted_infernal_stone/icon.png diff --git a/prerender/browse/railcraft/fitted_infernal_stone/index.html b/static/browse/railcraft/fitted_infernal_stone/index.html similarity index 100% rename from prerender/browse/railcraft/fitted_infernal_stone/index.html rename to static/browse/railcraft/fitted_infernal_stone/index.html diff --git a/src/data/railcraft/9.5.0/images/fitted_infernal_stone_slab.png b/static/browse/railcraft/fitted_infernal_stone_slab/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/fitted_infernal_stone_slab.png rename to static/browse/railcraft/fitted_infernal_stone_slab/icon.png diff --git a/prerender/browse/railcraft/fitted_infernal_stone_slab/index.html b/static/browse/railcraft/fitted_infernal_stone_slab/index.html similarity index 100% rename from prerender/browse/railcraft/fitted_infernal_stone_slab/index.html rename to static/browse/railcraft/fitted_infernal_stone_slab/index.html diff --git a/src/data/railcraft/9.5.0/images/fitted_infernal_stone_stairs.png b/static/browse/railcraft/fitted_infernal_stone_stairs/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/fitted_infernal_stone_stairs.png rename to static/browse/railcraft/fitted_infernal_stone_stairs/icon.png diff --git a/prerender/browse/railcraft/fitted_infernal_stone_stairs/index.html b/static/browse/railcraft/fitted_infernal_stone_stairs/index.html similarity index 100% rename from prerender/browse/railcraft/fitted_infernal_stone_stairs/index.html rename to static/browse/railcraft/fitted_infernal_stone_stairs/index.html diff --git a/src/data/railcraft/9.5.0/images/fitted_nether_stone.png b/static/browse/railcraft/fitted_nether_stone/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/fitted_nether_stone.png rename to static/browse/railcraft/fitted_nether_stone/icon.png diff --git a/prerender/browse/railcraft/fitted_nether_stone/index.html b/static/browse/railcraft/fitted_nether_stone/index.html similarity index 100% rename from prerender/browse/railcraft/fitted_nether_stone/index.html rename to static/browse/railcraft/fitted_nether_stone/index.html diff --git a/src/data/railcraft/9.5.0/images/fitted_nether_stone_slab.png b/static/browse/railcraft/fitted_nether_stone_slab/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/fitted_nether_stone_slab.png rename to static/browse/railcraft/fitted_nether_stone_slab/icon.png diff --git a/prerender/browse/railcraft/fitted_nether_stone_slab/index.html b/static/browse/railcraft/fitted_nether_stone_slab/index.html similarity index 100% rename from prerender/browse/railcraft/fitted_nether_stone_slab/index.html rename to static/browse/railcraft/fitted_nether_stone_slab/index.html diff --git a/src/data/railcraft/9.5.0/images/fitted_nether_stone_stairs.png b/static/browse/railcraft/fitted_nether_stone_stairs/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/fitted_nether_stone_stairs.png rename to static/browse/railcraft/fitted_nether_stone_stairs/icon.png diff --git a/prerender/browse/railcraft/fitted_nether_stone_stairs/index.html b/static/browse/railcraft/fitted_nether_stone_stairs/index.html similarity index 100% rename from prerender/browse/railcraft/fitted_nether_stone_stairs/index.html rename to static/browse/railcraft/fitted_nether_stone_stairs/index.html diff --git a/src/data/railcraft/9.5.0/images/fitted_quarried_stone.png b/static/browse/railcraft/fitted_quarried_stone/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/fitted_quarried_stone.png rename to static/browse/railcraft/fitted_quarried_stone/icon.png diff --git a/prerender/browse/railcraft/fitted_quarried_stone/index.html b/static/browse/railcraft/fitted_quarried_stone/index.html similarity index 100% rename from prerender/browse/railcraft/fitted_quarried_stone/index.html rename to static/browse/railcraft/fitted_quarried_stone/index.html diff --git a/src/data/railcraft/9.5.0/images/fitted_quarried_stone_slab.png b/static/browse/railcraft/fitted_quarried_stone_slab/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/fitted_quarried_stone_slab.png rename to static/browse/railcraft/fitted_quarried_stone_slab/icon.png diff --git a/prerender/browse/railcraft/fitted_quarried_stone_slab/index.html b/static/browse/railcraft/fitted_quarried_stone_slab/index.html similarity index 100% rename from prerender/browse/railcraft/fitted_quarried_stone_slab/index.html rename to static/browse/railcraft/fitted_quarried_stone_slab/index.html diff --git a/src/data/railcraft/9.5.0/images/fitted_quarried_stone_stairs.png b/static/browse/railcraft/fitted_quarried_stone_stairs/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/fitted_quarried_stone_stairs.png rename to static/browse/railcraft/fitted_quarried_stone_stairs/icon.png diff --git a/prerender/browse/railcraft/fitted_quarried_stone_stairs/index.html b/static/browse/railcraft/fitted_quarried_stone_stairs/index.html similarity index 100% rename from prerender/browse/railcraft/fitted_quarried_stone_stairs/index.html rename to static/browse/railcraft/fitted_quarried_stone_stairs/index.html diff --git a/src/data/railcraft/9.5.0/images/fitted_sandy_stone.png b/static/browse/railcraft/fitted_sandy_stone/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/fitted_sandy_stone.png rename to static/browse/railcraft/fitted_sandy_stone/icon.png diff --git a/prerender/browse/railcraft/fitted_sandy_stone/index.html b/static/browse/railcraft/fitted_sandy_stone/index.html similarity index 100% rename from prerender/browse/railcraft/fitted_sandy_stone/index.html rename to static/browse/railcraft/fitted_sandy_stone/index.html diff --git a/src/data/railcraft/9.5.0/images/fitted_sandy_stone_slab.png b/static/browse/railcraft/fitted_sandy_stone_slab/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/fitted_sandy_stone_slab.png rename to static/browse/railcraft/fitted_sandy_stone_slab/icon.png diff --git a/prerender/browse/railcraft/fitted_sandy_stone_slab/index.html b/static/browse/railcraft/fitted_sandy_stone_slab/index.html similarity index 100% rename from prerender/browse/railcraft/fitted_sandy_stone_slab/index.html rename to static/browse/railcraft/fitted_sandy_stone_slab/index.html diff --git a/src/data/railcraft/9.5.0/images/fitted_sandy_stone_stairs.png b/static/browse/railcraft/fitted_sandy_stone_stairs/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/fitted_sandy_stone_stairs.png rename to static/browse/railcraft/fitted_sandy_stone_stairs/icon.png diff --git a/prerender/browse/railcraft/fitted_sandy_stone_stairs/index.html b/static/browse/railcraft/fitted_sandy_stone_stairs/index.html similarity index 100% rename from prerender/browse/railcraft/fitted_sandy_stone_stairs/index.html rename to static/browse/railcraft/fitted_sandy_stone_stairs/index.html diff --git a/src/data/railcraft/9.5.0/images/fluid_loader.png b/static/browse/railcraft/fluid_loader/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/fluid_loader.png rename to static/browse/railcraft/fluid_loader/icon.png diff --git a/prerender/browse/railcraft/fluid_loader/index.html b/static/browse/railcraft/fluid_loader/index.html similarity index 100% rename from prerender/browse/railcraft/fluid_loader/index.html rename to static/browse/railcraft/fluid_loader/index.html diff --git a/src/data/railcraft/9.5.0/images/fluid_unloader.png b/static/browse/railcraft/fluid_unloader/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/fluid_unloader.png rename to static/browse/railcraft/fluid_unloader/icon.png diff --git a/prerender/browse/railcraft/fluid_unloader/index.html b/static/browse/railcraft/fluid_unloader/index.html similarity index 100% rename from prerender/browse/railcraft/fluid_unloader/index.html rename to static/browse/railcraft/fluid_unloader/index.html diff --git a/src/data/railcraft/9.5.0/images/flux_transformer.png b/static/browse/railcraft/flux_transformer/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/flux_transformer.png rename to static/browse/railcraft/flux_transformer/icon.png diff --git a/prerender/browse/railcraft/flux_transformer/index.html b/static/browse/railcraft/flux_transformer/index.html similarity index 100% rename from prerender/browse/railcraft/flux_transformer/index.html rename to static/browse/railcraft/flux_transformer/index.html diff --git a/src/data/railcraft/9.5.0/images/force_track_emitter.png b/static/browse/railcraft/force_track_emitter/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/force_track_emitter.png rename to static/browse/railcraft/force_track_emitter/icon.png diff --git a/prerender/browse/railcraft/force_track_emitter/index.html b/static/browse/railcraft/force_track_emitter/index.html similarity index 100% rename from prerender/browse/railcraft/force_track_emitter/index.html rename to static/browse/railcraft/force_track_emitter/index.html diff --git a/src/data/railcraft/9.5.0/images/frost_bound_block.png b/static/browse/railcraft/frost_bound_block/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/frost_bound_block.png rename to static/browse/railcraft/frost_bound_block/icon.png diff --git a/prerender/browse/railcraft/frost_bound_block/index.html b/static/browse/railcraft/frost_bound_block/index.html similarity index 100% rename from prerender/browse/railcraft/frost_bound_block/index.html rename to static/browse/railcraft/frost_bound_block/index.html diff --git a/src/data/railcraft/9.5.0/images/frost_bound_block_slab.png b/static/browse/railcraft/frost_bound_block_slab/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/frost_bound_block_slab.png rename to static/browse/railcraft/frost_bound_block_slab/icon.png diff --git a/prerender/browse/railcraft/frost_bound_block_slab/index.html b/static/browse/railcraft/frost_bound_block_slab/index.html similarity index 100% rename from prerender/browse/railcraft/frost_bound_block_slab/index.html rename to static/browse/railcraft/frost_bound_block_slab/index.html diff --git a/src/data/railcraft/9.5.0/images/frost_bound_block_stairs.png b/static/browse/railcraft/frost_bound_block_stairs/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/frost_bound_block_stairs.png rename to static/browse/railcraft/frost_bound_block_stairs/icon.png diff --git a/prerender/browse/railcraft/frost_bound_block_stairs/index.html b/static/browse/railcraft/frost_bound_block_stairs/index.html similarity index 100% rename from prerender/browse/railcraft/frost_bound_block_stairs/index.html rename to static/browse/railcraft/frost_bound_block_stairs/index.html diff --git a/src/data/railcraft/9.5.0/images/frost_bound_brick.png b/static/browse/railcraft/frost_bound_brick/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/frost_bound_brick.png rename to static/browse/railcraft/frost_bound_brick/icon.png diff --git a/prerender/browse/railcraft/frost_bound_brick/index.html b/static/browse/railcraft/frost_bound_brick/index.html similarity index 100% rename from prerender/browse/railcraft/frost_bound_brick/index.html rename to static/browse/railcraft/frost_bound_brick/index.html diff --git a/src/data/railcraft/9.5.0/images/frost_bound_brick_slab.png b/static/browse/railcraft/frost_bound_brick_slab/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/frost_bound_brick_slab.png rename to static/browse/railcraft/frost_bound_brick_slab/icon.png diff --git a/prerender/browse/railcraft/frost_bound_brick_slab/index.html b/static/browse/railcraft/frost_bound_brick_slab/index.html similarity index 100% rename from prerender/browse/railcraft/frost_bound_brick_slab/index.html rename to static/browse/railcraft/frost_bound_brick_slab/index.html diff --git a/src/data/railcraft/9.5.0/images/frost_bound_brick_stairs.png b/static/browse/railcraft/frost_bound_brick_stairs/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/frost_bound_brick_stairs.png rename to static/browse/railcraft/frost_bound_brick_stairs/icon.png diff --git a/prerender/browse/railcraft/frost_bound_brick_stairs/index.html b/static/browse/railcraft/frost_bound_brick_stairs/index.html similarity index 100% rename from prerender/browse/railcraft/frost_bound_brick_stairs/index.html rename to static/browse/railcraft/frost_bound_brick_stairs/index.html diff --git a/src/data/railcraft/9.5.0/images/frost_bound_brick_wall.png b/static/browse/railcraft/frost_bound_brick_wall/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/frost_bound_brick_wall.png rename to static/browse/railcraft/frost_bound_brick_wall/icon.png diff --git a/prerender/browse/railcraft/frost_bound_brick_wall/index.html b/static/browse/railcraft/frost_bound_brick_wall/index.html similarity index 100% rename from prerender/browse/railcraft/frost_bound_brick_wall/index.html rename to static/browse/railcraft/frost_bound_brick_wall/index.html diff --git a/src/data/railcraft/9.5.0/images/frost_bound_cobble_slab.png b/static/browse/railcraft/frost_bound_cobble_slab/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/frost_bound_cobble_slab.png rename to static/browse/railcraft/frost_bound_cobble_slab/icon.png diff --git a/prerender/browse/railcraft/frost_bound_cobble_slab/index.html b/static/browse/railcraft/frost_bound_cobble_slab/index.html similarity index 100% rename from prerender/browse/railcraft/frost_bound_cobble_slab/index.html rename to static/browse/railcraft/frost_bound_cobble_slab/index.html diff --git a/src/data/railcraft/9.5.0/images/frost_bound_cobble_stairs.png b/static/browse/railcraft/frost_bound_cobble_stairs/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/frost_bound_cobble_stairs.png rename to static/browse/railcraft/frost_bound_cobble_stairs/icon.png diff --git a/prerender/browse/railcraft/frost_bound_cobble_stairs/index.html b/static/browse/railcraft/frost_bound_cobble_stairs/index.html similarity index 100% rename from prerender/browse/railcraft/frost_bound_cobble_stairs/index.html rename to static/browse/railcraft/frost_bound_cobble_stairs/index.html diff --git a/src/data/railcraft/9.5.0/images/frost_bound_cobblestone.png b/static/browse/railcraft/frost_bound_cobblestone/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/frost_bound_cobblestone.png rename to static/browse/railcraft/frost_bound_cobblestone/icon.png diff --git a/prerender/browse/railcraft/frost_bound_cobblestone/index.html b/static/browse/railcraft/frost_bound_cobblestone/index.html similarity index 100% rename from prerender/browse/railcraft/frost_bound_cobblestone/index.html rename to static/browse/railcraft/frost_bound_cobblestone/index.html diff --git a/src/data/railcraft/9.5.0/images/frostbound_stone_lantern.png b/static/browse/railcraft/frostbound_stone_lantern/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/frostbound_stone_lantern.png rename to static/browse/railcraft/frostbound_stone_lantern/icon.png diff --git a/prerender/browse/railcraft/frostbound_stone_lantern/index.html b/static/browse/railcraft/frostbound_stone_lantern/index.html similarity index 100% rename from prerender/browse/railcraft/frostbound_stone_lantern/index.html rename to static/browse/railcraft/frostbound_stone_lantern/index.html diff --git a/src/data/railcraft/9.5.0/images/gated_one_way_track.png b/static/browse/railcraft/gated_one_way_track/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/gated_one_way_track.png rename to static/browse/railcraft/gated_one_way_track/icon.png diff --git a/prerender/browse/railcraft/gated_one_way_track/index.html b/static/browse/railcraft/gated_one_way_track/index.html similarity index 100% rename from prerender/browse/railcraft/gated_one_way_track/index.html rename to static/browse/railcraft/gated_one_way_track/index.html diff --git a/src/data/railcraft/9.5.0/images/gated_track.png b/static/browse/railcraft/gated_track/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/gated_track.png rename to static/browse/railcraft/gated_track/icon.png diff --git a/prerender/browse/railcraft/gated_track/index.html b/static/browse/railcraft/gated_track/index.html similarity index 100% rename from prerender/browse/railcraft/gated_track/index.html rename to static/browse/railcraft/gated_track/index.html diff --git a/src/data/railcraft/9.5.0/images/gift_cart.png b/static/browse/railcraft/gift_cart/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/gift_cart.png rename to static/browse/railcraft/gift_cart/icon.png diff --git a/prerender/browse/railcraft/gift_cart/index.html b/static/browse/railcraft/gift_cart/index.html similarity index 100% rename from prerender/browse/railcraft/gift_cart/index.html rename to static/browse/railcraft/gift_cart/index.html diff --git a/src/data/railcraft/9.5.0/images/gold_lantern.png b/static/browse/railcraft/gold_lantern/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/gold_lantern.png rename to static/browse/railcraft/gold_lantern/icon.png diff --git a/prerender/browse/railcraft/gold_lantern/index.html b/static/browse/railcraft/gold_lantern/index.html similarity index 100% rename from prerender/browse/railcraft/gold_lantern/index.html rename to static/browse/railcraft/gold_lantern/index.html diff --git a/src/data/railcraft/9.5.0/images/gold_plate_gear.png b/static/browse/railcraft/gold_plate_gear/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/gold_plate_gear.png rename to static/browse/railcraft/gold_plate_gear/icon.png diff --git a/prerender/browse/railcraft/gold_plate_gear/index.html b/static/browse/railcraft/gold_plate_gear/index.html similarity index 100% rename from prerender/browse/railcraft/gold_plate_gear/index.html rename to static/browse/railcraft/gold_plate_gear/index.html diff --git a/src/data/railcraft/9.5.0/images/gold_slab.png b/static/browse/railcraft/gold_slab/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/gold_slab.png rename to static/browse/railcraft/gold_slab/icon.png diff --git a/prerender/browse/railcraft/gold_slab/index.html b/static/browse/railcraft/gold_slab/index.html similarity index 100% rename from prerender/browse/railcraft/gold_slab/index.html rename to static/browse/railcraft/gold_slab/index.html diff --git a/src/data/railcraft/9.5.0/images/gold_stairs.png b/static/browse/railcraft/gold_stairs/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/gold_stairs.png rename to static/browse/railcraft/gold_stairs/icon.png diff --git a/prerender/browse/railcraft/gold_stairs/index.html b/static/browse/railcraft/gold_stairs/index.html similarity index 100% rename from prerender/browse/railcraft/gold_stairs/index.html rename to static/browse/railcraft/gold_stairs/index.html diff --git a/src/data/railcraft/9.5.0/images/gold_wall.png b/static/browse/railcraft/gold_wall/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/gold_wall.png rename to static/browse/railcraft/gold_wall/icon.png diff --git a/prerender/browse/railcraft/gold_wall/index.html b/static/browse/railcraft/gold_wall/index.html similarity index 100% rename from prerender/browse/railcraft/gold_wall/index.html rename to static/browse/railcraft/gold_wall/index.html diff --git a/src/data/railcraft/9.5.0/images/golden_railway_ticket.png b/static/browse/railcraft/golden_railway_ticket/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/golden_railway_ticket.png rename to static/browse/railcraft/golden_railway_ticket/icon.png diff --git a/prerender/browse/railcraft/golden_railway_ticket/index.html b/static/browse/railcraft/golden_railway_ticket/index.html similarity index 100% rename from prerender/browse/railcraft/golden_railway_ticket/index.html rename to static/browse/railcraft/golden_railway_ticket/index.html diff --git a/src/data/railcraft/9.5.0/images/gray_metal_platform.png b/static/browse/railcraft/gray_metal_platform/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/gray_metal_platform.png rename to static/browse/railcraft/gray_metal_platform/icon.png diff --git a/prerender/browse/railcraft/gray_metal_platform/index.html b/static/browse/railcraft/gray_metal_platform/index.html similarity index 100% rename from prerender/browse/railcraft/gray_metal_platform/index.html rename to static/browse/railcraft/gray_metal_platform/index.html diff --git a/src/data/railcraft/9.5.0/images/gray_metal_post.png b/static/browse/railcraft/gray_metal_post/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/gray_metal_post.png rename to static/browse/railcraft/gray_metal_post/icon.png diff --git a/prerender/browse/railcraft/gray_metal_post/index.html b/static/browse/railcraft/gray_metal_post/index.html similarity index 100% rename from prerender/browse/railcraft/gray_metal_post/index.html rename to static/browse/railcraft/gray_metal_post/index.html diff --git a/src/data/railcraft/9.5.0/images/green_metal_platform.png b/static/browse/railcraft/green_metal_platform/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/green_metal_platform.png rename to static/browse/railcraft/green_metal_platform/icon.png diff --git a/prerender/browse/railcraft/green_metal_platform/index.html b/static/browse/railcraft/green_metal_platform/index.html similarity index 100% rename from prerender/browse/railcraft/green_metal_platform/index.html rename to static/browse/railcraft/green_metal_platform/index.html diff --git a/src/data/railcraft/9.5.0/images/green_metal_post.png b/static/browse/railcraft/green_metal_post/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/green_metal_post.png rename to static/browse/railcraft/green_metal_post/icon.png diff --git a/prerender/browse/railcraft/green_metal_post/index.html b/static/browse/railcraft/green_metal_post/index.html similarity index 100% rename from prerender/browse/railcraft/green_metal_post/index.html rename to static/browse/railcraft/green_metal_post/index.html diff --git a/src/data/railcraft/9.5.0/images/h_s_booster_track.png b/static/browse/railcraft/h_s_booster_track/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/h_s_booster_track.png rename to static/browse/railcraft/h_s_booster_track/icon.png diff --git a/prerender/browse/railcraft/h_s_booster_track/index.html b/static/browse/railcraft/h_s_booster_track/index.html similarity index 100% rename from prerender/browse/railcraft/h_s_booster_track/index.html rename to static/browse/railcraft/h_s_booster_track/index.html diff --git a/src/data/railcraft/9.5.0/images/h_s_rail.png b/static/browse/railcraft/h_s_rail/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/h_s_rail.png rename to static/browse/railcraft/h_s_rail/icon.png diff --git a/prerender/browse/railcraft/h_s_rail/index.html b/static/browse/railcraft/h_s_rail/index.html similarity index 100% rename from prerender/browse/railcraft/h_s_rail/index.html rename to static/browse/railcraft/h_s_rail/index.html diff --git a/src/data/railcraft/9.5.0/images/h_s_switch_track.png b/static/browse/railcraft/h_s_switch_track/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/h_s_switch_track.png rename to static/browse/railcraft/h_s_switch_track/icon.png diff --git a/prerender/browse/railcraft/h_s_switch_track/index.html b/static/browse/railcraft/h_s_switch_track/index.html similarity index 100% rename from prerender/browse/railcraft/h_s_switch_track/index.html rename to static/browse/railcraft/h_s_switch_track/index.html diff --git a/src/data/railcraft/9.5.0/images/h_s_track.png b/static/browse/railcraft/h_s_track/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/h_s_track.png rename to static/browse/railcraft/h_s_track/icon.png diff --git a/prerender/browse/railcraft/h_s_track/index.html b/static/browse/railcraft/h_s_track/index.html similarity index 100% rename from prerender/browse/railcraft/h_s_track/index.html rename to static/browse/railcraft/h_s_track/index.html diff --git a/src/data/railcraft/9.5.0/images/h_s_transition_track.png b/static/browse/railcraft/h_s_transition_track/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/h_s_transition_track.png rename to static/browse/railcraft/h_s_transition_track/icon.png diff --git a/prerender/browse/railcraft/h_s_transition_track/index.html b/static/browse/railcraft/h_s_transition_track/index.html similarity index 100% rename from prerender/browse/railcraft/h_s_transition_track/index.html rename to static/browse/railcraft/h_s_transition_track/index.html diff --git a/src/data/railcraft/9.5.0/images/h_s_wye_track.png b/static/browse/railcraft/h_s_wye_track/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/h_s_wye_track.png rename to static/browse/railcraft/h_s_wye_track/icon.png diff --git a/prerender/browse/railcraft/h_s_wye_track/index.html b/static/browse/railcraft/h_s_wye_track/index.html similarity index 100% rename from prerender/browse/railcraft/h_s_wye_track/index.html rename to static/browse/railcraft/h_s_wye_track/index.html diff --git a/src/data/railcraft/9.5.0/images/high_pressure_boiler_tank.png b/static/browse/railcraft/high_pressure_boiler_tank/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/high_pressure_boiler_tank.png rename to static/browse/railcraft/high_pressure_boiler_tank/icon.png diff --git a/prerender/browse/railcraft/high_pressure_boiler_tank/index.html b/static/browse/railcraft/high_pressure_boiler_tank/index.html similarity index 100% rename from prerender/browse/railcraft/high_pressure_boiler_tank/index.html rename to static/browse/railcraft/high_pressure_boiler_tank/index.html diff --git a/src/data/railcraft/9.5.0/images/hobbyist_s_steam_engine.png b/static/browse/railcraft/hobbyist_s_steam_engine/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/hobbyist_s_steam_engine.png rename to static/browse/railcraft/hobbyist_s_steam_engine/icon.png diff --git a/prerender/browse/railcraft/hobbyist_s_steam_engine/index.html b/static/browse/railcraft/hobbyist_s_steam_engine/index.html similarity index 100% rename from prerender/browse/railcraft/hobbyist_s_steam_engine/index.html rename to static/browse/railcraft/hobbyist_s_steam_engine/index.html diff --git a/src/data/railcraft/9.5.0/images/ice_slab.png b/static/browse/railcraft/ice_slab/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/ice_slab.png rename to static/browse/railcraft/ice_slab/icon.png diff --git a/prerender/browse/railcraft/ice_slab/index.html b/static/browse/railcraft/ice_slab/index.html similarity index 100% rename from prerender/browse/railcraft/ice_slab/index.html rename to static/browse/railcraft/ice_slab/index.html diff --git a/src/data/railcraft/9.5.0/images/ice_stairs.png b/static/browse/railcraft/ice_stairs/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/ice_stairs.png rename to static/browse/railcraft/ice_stairs/icon.png diff --git a/prerender/browse/railcraft/ice_stairs/index.html b/static/browse/railcraft/ice_stairs/index.html similarity index 100% rename from prerender/browse/railcraft/ice_stairs/index.html rename to static/browse/railcraft/ice_stairs/index.html diff --git a/src/data/railcraft/9.5.0/images/ice_wall.png b/static/browse/railcraft/ice_wall/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/ice_wall.png rename to static/browse/railcraft/ice_wall/icon.png diff --git a/prerender/browse/railcraft/ice_wall/index.html b/static/browse/railcraft/ice_wall/index.html similarity index 100% rename from prerender/browse/railcraft/ice_wall/index.html rename to static/browse/railcraft/ice_wall/index.html diff --git a/src/data/railcraft/logo.png b/static/browse/railcraft/icon.png similarity index 100% rename from src/data/railcraft/logo.png rename to static/browse/railcraft/icon.png diff --git a/prerender/browse/railcraft/index.html b/static/browse/railcraft/index.html similarity index 100% rename from prerender/browse/railcraft/index.html rename to static/browse/railcraft/index.html diff --git a/src/data/railcraft/9.5.0/images/industrial_steam_engine.png b/static/browse/railcraft/industrial_steam_engine/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/industrial_steam_engine.png rename to static/browse/railcraft/industrial_steam_engine/icon.png diff --git a/prerender/browse/railcraft/industrial_steam_engine/index.html b/static/browse/railcraft/industrial_steam_engine/index.html similarity index 100% rename from prerender/browse/railcraft/industrial_steam_engine/index.html rename to static/browse/railcraft/industrial_steam_engine/index.html diff --git a/src/data/railcraft/9.5.0/images/infernal_block.png b/static/browse/railcraft/infernal_block/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/infernal_block.png rename to static/browse/railcraft/infernal_block/icon.png diff --git a/prerender/browse/railcraft/infernal_block/index.html b/static/browse/railcraft/infernal_block/index.html similarity index 100% rename from prerender/browse/railcraft/infernal_block/index.html rename to static/browse/railcraft/infernal_block/index.html diff --git a/src/data/railcraft/9.5.0/images/infernal_block_slab.png b/static/browse/railcraft/infernal_block_slab/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/infernal_block_slab.png rename to static/browse/railcraft/infernal_block_slab/icon.png diff --git a/prerender/browse/railcraft/infernal_block_slab/index.html b/static/browse/railcraft/infernal_block_slab/index.html similarity index 100% rename from prerender/browse/railcraft/infernal_block_slab/index.html rename to static/browse/railcraft/infernal_block_slab/index.html diff --git a/src/data/railcraft/9.5.0/images/infernal_block_stairs.png b/static/browse/railcraft/infernal_block_stairs/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/infernal_block_stairs.png rename to static/browse/railcraft/infernal_block_stairs/icon.png diff --git a/prerender/browse/railcraft/infernal_block_stairs/index.html b/static/browse/railcraft/infernal_block_stairs/index.html similarity index 100% rename from prerender/browse/railcraft/infernal_block_stairs/index.html rename to static/browse/railcraft/infernal_block_stairs/index.html diff --git a/src/data/railcraft/9.5.0/images/infernal_brick.png b/static/browse/railcraft/infernal_brick/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/infernal_brick.png rename to static/browse/railcraft/infernal_brick/icon.png diff --git a/prerender/browse/railcraft/infernal_brick/index.html b/static/browse/railcraft/infernal_brick/index.html similarity index 100% rename from prerender/browse/railcraft/infernal_brick/index.html rename to static/browse/railcraft/infernal_brick/index.html diff --git a/src/data/railcraft/9.5.0/images/infernal_brick_slab.png b/static/browse/railcraft/infernal_brick_slab/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/infernal_brick_slab.png rename to static/browse/railcraft/infernal_brick_slab/icon.png diff --git a/prerender/browse/railcraft/infernal_brick_slab/index.html b/static/browse/railcraft/infernal_brick_slab/index.html similarity index 100% rename from prerender/browse/railcraft/infernal_brick_slab/index.html rename to static/browse/railcraft/infernal_brick_slab/index.html diff --git a/src/data/railcraft/9.5.0/images/infernal_brick_stairs.png b/static/browse/railcraft/infernal_brick_stairs/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/infernal_brick_stairs.png rename to static/browse/railcraft/infernal_brick_stairs/icon.png diff --git a/prerender/browse/railcraft/infernal_brick_stairs/index.html b/static/browse/railcraft/infernal_brick_stairs/index.html similarity index 100% rename from prerender/browse/railcraft/infernal_brick_stairs/index.html rename to static/browse/railcraft/infernal_brick_stairs/index.html diff --git a/src/data/railcraft/9.5.0/images/infernal_brick_wall.png b/static/browse/railcraft/infernal_brick_wall/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/infernal_brick_wall.png rename to static/browse/railcraft/infernal_brick_wall/icon.png diff --git a/prerender/browse/railcraft/infernal_brick_wall/index.html b/static/browse/railcraft/infernal_brick_wall/index.html similarity index 100% rename from prerender/browse/railcraft/infernal_brick_wall/index.html rename to static/browse/railcraft/infernal_brick_wall/index.html diff --git a/src/data/railcraft/9.5.0/images/infernal_cobble_slab.png b/static/browse/railcraft/infernal_cobble_slab/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/infernal_cobble_slab.png rename to static/browse/railcraft/infernal_cobble_slab/icon.png diff --git a/prerender/browse/railcraft/infernal_cobble_slab/index.html b/static/browse/railcraft/infernal_cobble_slab/index.html similarity index 100% rename from prerender/browse/railcraft/infernal_cobble_slab/index.html rename to static/browse/railcraft/infernal_cobble_slab/index.html diff --git a/src/data/railcraft/9.5.0/images/infernal_cobble_stairs.png b/static/browse/railcraft/infernal_cobble_stairs/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/infernal_cobble_stairs.png rename to static/browse/railcraft/infernal_cobble_stairs/icon.png diff --git a/prerender/browse/railcraft/infernal_cobble_stairs/index.html b/static/browse/railcraft/infernal_cobble_stairs/index.html similarity index 100% rename from prerender/browse/railcraft/infernal_cobble_stairs/index.html rename to static/browse/railcraft/infernal_cobble_stairs/index.html diff --git a/src/data/railcraft/9.5.0/images/infernal_cobblestone.png b/static/browse/railcraft/infernal_cobblestone/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/infernal_cobblestone.png rename to static/browse/railcraft/infernal_cobblestone/icon.png diff --git a/prerender/browse/railcraft/infernal_cobblestone/index.html b/static/browse/railcraft/infernal_cobblestone/index.html similarity index 100% rename from prerender/browse/railcraft/infernal_cobblestone/index.html rename to static/browse/railcraft/infernal_cobblestone/index.html diff --git a/src/data/railcraft/9.5.0/images/infernal_stone_lantern.png b/static/browse/railcraft/infernal_stone_lantern/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/infernal_stone_lantern.png rename to static/browse/railcraft/infernal_stone_lantern/icon.png diff --git a/prerender/browse/railcraft/infernal_stone_lantern/index.html b/static/browse/railcraft/infernal_stone_lantern/index.html similarity index 100% rename from prerender/browse/railcraft/infernal_stone_lantern/index.html rename to static/browse/railcraft/infernal_stone_lantern/index.html diff --git a/src/data/railcraft/9.5.0/images/iron_bore_head.png b/static/browse/railcraft/iron_bore_head/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/iron_bore_head.png rename to static/browse/railcraft/iron_bore_head/icon.png diff --git a/prerender/browse/railcraft/iron_bore_head/index.html b/static/browse/railcraft/iron_bore_head/index.html similarity index 100% rename from prerender/browse/railcraft/iron_bore_head/index.html rename to static/browse/railcraft/iron_bore_head/index.html diff --git a/src/data/railcraft/9.5.0/images/iron_gear.png b/static/browse/railcraft/iron_gear/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/iron_gear.png rename to static/browse/railcraft/iron_gear/icon.png diff --git a/prerender/browse/railcraft/iron_gear/index.html b/static/browse/railcraft/iron_gear/index.html similarity index 100% rename from prerender/browse/railcraft/iron_gear/index.html rename to static/browse/railcraft/iron_gear/index.html diff --git a/src/data/railcraft/9.5.0/images/iron_lantern.png b/static/browse/railcraft/iron_lantern/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/iron_lantern.png rename to static/browse/railcraft/iron_lantern/icon.png diff --git a/prerender/browse/railcraft/iron_lantern/index.html b/static/browse/railcraft/iron_lantern/index.html similarity index 100% rename from prerender/browse/railcraft/iron_lantern/index.html rename to static/browse/railcraft/iron_lantern/index.html diff --git a/src/data/railcraft/9.5.0/images/iron_nugget.png b/static/browse/railcraft/iron_nugget/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/iron_nugget.png rename to static/browse/railcraft/iron_nugget/icon.png diff --git a/prerender/browse/railcraft/iron_nugget/index.html b/static/browse/railcraft/iron_nugget/index.html similarity index 100% rename from prerender/browse/railcraft/iron_nugget/index.html rename to static/browse/railcraft/iron_nugget/index.html diff --git a/src/data/railcraft/9.5.0/images/iron_plate.png b/static/browse/railcraft/iron_plate/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/iron_plate.png rename to static/browse/railcraft/iron_plate/icon.png diff --git a/prerender/browse/railcraft/iron_plate/index.html b/static/browse/railcraft/iron_plate/index.html similarity index 100% rename from prerender/browse/railcraft/iron_plate/index.html rename to static/browse/railcraft/iron_plate/index.html diff --git a/src/data/railcraft/9.5.0/images/iron_slab.png b/static/browse/railcraft/iron_slab/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/iron_slab.png rename to static/browse/railcraft/iron_slab/icon.png diff --git a/prerender/browse/railcraft/iron_slab/index.html b/static/browse/railcraft/iron_slab/index.html similarity index 100% rename from prerender/browse/railcraft/iron_slab/index.html rename to static/browse/railcraft/iron_slab/index.html diff --git a/src/data/railcraft/9.5.0/images/iron_stairs.png b/static/browse/railcraft/iron_stairs/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/iron_stairs.png rename to static/browse/railcraft/iron_stairs/icon.png diff --git a/prerender/browse/railcraft/iron_stairs/index.html b/static/browse/railcraft/iron_stairs/index.html similarity index 100% rename from prerender/browse/railcraft/iron_stairs/index.html rename to static/browse/railcraft/iron_stairs/index.html diff --git a/src/data/railcraft/9.5.0/images/iron_tank_gauge.png b/static/browse/railcraft/iron_tank_gauge/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/iron_tank_gauge.png rename to static/browse/railcraft/iron_tank_gauge/icon.png diff --git a/prerender/browse/railcraft/iron_tank_gauge/index.html b/static/browse/railcraft/iron_tank_gauge/index.html similarity index 100% rename from prerender/browse/railcraft/iron_tank_gauge/index.html rename to static/browse/railcraft/iron_tank_gauge/index.html diff --git a/src/data/railcraft/9.5.0/images/iron_tank_valve.png b/static/browse/railcraft/iron_tank_valve/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/iron_tank_valve.png rename to static/browse/railcraft/iron_tank_valve/icon.png diff --git a/prerender/browse/railcraft/iron_tank_valve/index.html b/static/browse/railcraft/iron_tank_valve/index.html similarity index 100% rename from prerender/browse/railcraft/iron_tank_valve/index.html rename to static/browse/railcraft/iron_tank_valve/index.html diff --git a/src/data/railcraft/9.5.0/images/iron_tank_wall.png b/static/browse/railcraft/iron_tank_wall/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/iron_tank_wall.png rename to static/browse/railcraft/iron_tank_wall/icon.png diff --git a/prerender/browse/railcraft/iron_tank_wall/index.html b/static/browse/railcraft/iron_tank_wall/index.html similarity index 100% rename from prerender/browse/railcraft/iron_tank_wall/index.html rename to static/browse/railcraft/iron_tank_wall/index.html diff --git a/src/data/railcraft/9.5.0/images/iron_wall.png b/static/browse/railcraft/iron_wall/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/iron_wall.png rename to static/browse/railcraft/iron_wall/icon.png diff --git a/prerender/browse/railcraft/iron_wall/index.html b/static/browse/railcraft/iron_wall/index.html similarity index 100% rename from prerender/browse/railcraft/iron_wall/index.html rename to static/browse/railcraft/iron_wall/index.html diff --git a/src/data/railcraft/9.5.0/images/item_loader.png b/static/browse/railcraft/item_loader/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/item_loader.png rename to static/browse/railcraft/item_loader/icon.png diff --git a/prerender/browse/railcraft/item_loader/index.html b/static/browse/railcraft/item_loader/index.html similarity index 100% rename from prerender/browse/railcraft/item_loader/index.html rename to static/browse/railcraft/item_loader/index.html diff --git a/src/data/railcraft/9.5.0/images/item_unloader.png b/static/browse/railcraft/item_unloader/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/item_unloader.png rename to static/browse/railcraft/item_unloader/icon.png diff --git a/prerender/browse/railcraft/item_unloader/index.html b/static/browse/railcraft/item_unloader/index.html similarity index 100% rename from prerender/browse/railcraft/item_unloader/index.html rename to static/browse/railcraft/item_unloader/index.html diff --git a/src/data/railcraft/9.5.0/images/junction_track.png b/static/browse/railcraft/junction_track/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/junction_track.png rename to static/browse/railcraft/junction_track/icon.png diff --git a/prerender/browse/railcraft/junction_track/index.html b/static/browse/railcraft/junction_track/index.html similarity index 100% rename from prerender/browse/railcraft/junction_track/index.html rename to static/browse/railcraft/junction_track/index.html diff --git a/src/data/railcraft/9.5.0/images/launcher_track.png b/static/browse/railcraft/launcher_track/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/launcher_track.png rename to static/browse/railcraft/launcher_track/icon.png diff --git a/prerender/browse/railcraft/launcher_track/index.html b/static/browse/railcraft/launcher_track/index.html similarity index 100% rename from prerender/browse/railcraft/launcher_track/index.html rename to static/browse/railcraft/launcher_track/index.html diff --git a/src/data/railcraft/9.5.0/images/lead_ingot.png b/static/browse/railcraft/lead_ingot/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/lead_ingot.png rename to static/browse/railcraft/lead_ingot/icon.png diff --git a/prerender/browse/railcraft/lead_ingot/index.html b/static/browse/railcraft/lead_ingot/index.html similarity index 100% rename from prerender/browse/railcraft/lead_ingot/index.html rename to static/browse/railcraft/lead_ingot/index.html diff --git a/src/data/railcraft/9.5.0/images/lead_lantern.png b/static/browse/railcraft/lead_lantern/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/lead_lantern.png rename to static/browse/railcraft/lead_lantern/icon.png diff --git a/prerender/browse/railcraft/lead_lantern/index.html b/static/browse/railcraft/lead_lantern/index.html similarity index 100% rename from prerender/browse/railcraft/lead_lantern/index.html rename to static/browse/railcraft/lead_lantern/index.html diff --git a/src/data/railcraft/9.5.0/images/lead_nugget.png b/static/browse/railcraft/lead_nugget/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/lead_nugget.png rename to static/browse/railcraft/lead_nugget/icon.png diff --git a/prerender/browse/railcraft/lead_nugget/index.html b/static/browse/railcraft/lead_nugget/index.html similarity index 100% rename from prerender/browse/railcraft/lead_nugget/index.html rename to static/browse/railcraft/lead_nugget/index.html diff --git a/src/data/railcraft/9.5.0/images/lead_slab.png b/static/browse/railcraft/lead_slab/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/lead_slab.png rename to static/browse/railcraft/lead_slab/icon.png diff --git a/prerender/browse/railcraft/lead_slab/index.html b/static/browse/railcraft/lead_slab/index.html similarity index 100% rename from prerender/browse/railcraft/lead_slab/index.html rename to static/browse/railcraft/lead_slab/index.html diff --git a/src/data/railcraft/9.5.0/images/lead_stairs.png b/static/browse/railcraft/lead_stairs/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/lead_stairs.png rename to static/browse/railcraft/lead_stairs/icon.png diff --git a/prerender/browse/railcraft/lead_stairs/index.html b/static/browse/railcraft/lead_stairs/index.html similarity index 100% rename from prerender/browse/railcraft/lead_stairs/index.html rename to static/browse/railcraft/lead_stairs/index.html diff --git a/src/data/railcraft/9.5.0/images/light_blue_metal_platform.png b/static/browse/railcraft/light_blue_metal_platform/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/light_blue_metal_platform.png rename to static/browse/railcraft/light_blue_metal_platform/icon.png diff --git a/prerender/browse/railcraft/light_blue_metal_platform/index.html b/static/browse/railcraft/light_blue_metal_platform/index.html similarity index 100% rename from prerender/browse/railcraft/light_blue_metal_platform/index.html rename to static/browse/railcraft/light_blue_metal_platform/index.html diff --git a/src/data/railcraft/9.5.0/images/light_blue_metal_post.png b/static/browse/railcraft/light_blue_metal_post/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/light_blue_metal_post.png rename to static/browse/railcraft/light_blue_metal_post/icon.png diff --git a/prerender/browse/railcraft/light_blue_metal_post/index.html b/static/browse/railcraft/light_blue_metal_post/index.html similarity index 100% rename from prerender/browse/railcraft/light_blue_metal_post/index.html rename to static/browse/railcraft/light_blue_metal_post/index.html diff --git a/src/data/railcraft/9.5.0/images/light_gray_metal_platform.png b/static/browse/railcraft/light_gray_metal_platform/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/light_gray_metal_platform.png rename to static/browse/railcraft/light_gray_metal_platform/icon.png diff --git a/prerender/browse/railcraft/light_gray_metal_platform/index.html b/static/browse/railcraft/light_gray_metal_platform/index.html similarity index 100% rename from prerender/browse/railcraft/light_gray_metal_platform/index.html rename to static/browse/railcraft/light_gray_metal_platform/index.html diff --git a/src/data/railcraft/9.5.0/images/light_gray_metal_post.png b/static/browse/railcraft/light_gray_metal_post/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/light_gray_metal_post.png rename to static/browse/railcraft/light_gray_metal_post/icon.png diff --git a/prerender/browse/railcraft/light_gray_metal_post/index.html b/static/browse/railcraft/light_gray_metal_post/index.html similarity index 100% rename from prerender/browse/railcraft/light_gray_metal_post/index.html rename to static/browse/railcraft/light_gray_metal_post/index.html diff --git a/src/data/railcraft/9.5.0/images/lime_metal_platform.png b/static/browse/railcraft/lime_metal_platform/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/lime_metal_platform.png rename to static/browse/railcraft/lime_metal_platform/icon.png diff --git a/prerender/browse/railcraft/lime_metal_platform/index.html b/static/browse/railcraft/lime_metal_platform/index.html similarity index 100% rename from prerender/browse/railcraft/lime_metal_platform/index.html rename to static/browse/railcraft/lime_metal_platform/index.html diff --git a/src/data/railcraft/9.5.0/images/lime_metal_post.png b/static/browse/railcraft/lime_metal_post/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/lime_metal_post.png rename to static/browse/railcraft/lime_metal_post/icon.png diff --git a/prerender/browse/railcraft/lime_metal_post/index.html b/static/browse/railcraft/lime_metal_post/index.html similarity index 100% rename from prerender/browse/railcraft/lime_metal_post/index.html rename to static/browse/railcraft/lime_metal_post/index.html diff --git a/src/data/railcraft/9.5.0/images/limiter_track.png b/static/browse/railcraft/limiter_track/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/limiter_track.png rename to static/browse/railcraft/limiter_track/icon.png diff --git a/prerender/browse/railcraft/limiter_track/index.html b/static/browse/railcraft/limiter_track/index.html similarity index 100% rename from prerender/browse/railcraft/limiter_track/index.html rename to static/browse/railcraft/limiter_track/index.html diff --git a/src/data/railcraft/9.5.0/images/liquid_fueled_boiler_firebox.png b/static/browse/railcraft/liquid_fueled_boiler_firebox/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/liquid_fueled_boiler_firebox.png rename to static/browse/railcraft/liquid_fueled_boiler_firebox/icon.png diff --git a/prerender/browse/railcraft/liquid_fueled_boiler_firebox/index.html b/static/browse/railcraft/liquid_fueled_boiler_firebox/index.html similarity index 100% rename from prerender/browse/railcraft/liquid_fueled_boiler_firebox/index.html rename to static/browse/railcraft/liquid_fueled_boiler_firebox/index.html diff --git a/src/data/railcraft/9.5.0/images/locking_track.png b/static/browse/railcraft/locking_track/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/locking_track.png rename to static/browse/railcraft/locking_track/icon.png diff --git a/prerender/browse/railcraft/locking_track/index.html b/static/browse/railcraft/locking_track/index.html similarity index 100% rename from prerender/browse/railcraft/locking_track/index.html rename to static/browse/railcraft/locking_track/index.html diff --git a/src/data/railcraft/9.5.0/images/locomotive_track.png b/static/browse/railcraft/locomotive_track/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/locomotive_track.png rename to static/browse/railcraft/locomotive_track/icon.png diff --git a/prerender/browse/railcraft/locomotive_track/index.html b/static/browse/railcraft/locomotive_track/index.html similarity index 100% rename from prerender/browse/railcraft/locomotive_track/index.html rename to static/browse/railcraft/locomotive_track/index.html diff --git a/src/data/railcraft/9.5.0/images/low_pressure_boiler_tank.png b/static/browse/railcraft/low_pressure_boiler_tank/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/low_pressure_boiler_tank.png rename to static/browse/railcraft/low_pressure_boiler_tank/icon.png diff --git a/prerender/browse/railcraft/low_pressure_boiler_tank/index.html b/static/browse/railcraft/low_pressure_boiler_tank/index.html similarity index 100% rename from prerender/browse/railcraft/low_pressure_boiler_tank/index.html rename to static/browse/railcraft/low_pressure_boiler_tank/index.html diff --git a/src/data/railcraft/9.5.0/images/magenta_metal_platform.png b/static/browse/railcraft/magenta_metal_platform/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/magenta_metal_platform.png rename to static/browse/railcraft/magenta_metal_platform/icon.png diff --git a/prerender/browse/railcraft/magenta_metal_platform/index.html b/static/browse/railcraft/magenta_metal_platform/index.html similarity index 100% rename from prerender/browse/railcraft/magenta_metal_platform/index.html rename to static/browse/railcraft/magenta_metal_platform/index.html diff --git a/src/data/railcraft/9.5.0/images/magenta_metal_post.png b/static/browse/railcraft/magenta_metal_post/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/magenta_metal_post.png rename to static/browse/railcraft/magenta_metal_post/icon.png diff --git a/prerender/browse/railcraft/magenta_metal_post/index.html b/static/browse/railcraft/magenta_metal_post/index.html similarity index 100% rename from prerender/browse/railcraft/magenta_metal_post/index.html rename to static/browse/railcraft/magenta_metal_post/index.html diff --git a/src/data/railcraft/9.5.0/images/magnifying_glass.png b/static/browse/railcraft/magnifying_glass/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/magnifying_glass.png rename to static/browse/railcraft/magnifying_glass/icon.png diff --git a/prerender/browse/railcraft/magnifying_glass/index.html b/static/browse/railcraft/magnifying_glass/index.html similarity index 100% rename from prerender/browse/railcraft/magnifying_glass/index.html rename to static/browse/railcraft/magnifying_glass/index.html diff --git a/src/data/railcraft/9.5.0/images/manual_steam_trap.png b/static/browse/railcraft/manual_steam_trap/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/manual_steam_trap.png rename to static/browse/railcraft/manual_steam_trap/icon.png diff --git a/prerender/browse/railcraft/manual_steam_trap/index.html b/static/browse/railcraft/manual_steam_trap/index.html similarity index 100% rename from prerender/browse/railcraft/manual_steam_trap/index.html rename to static/browse/railcraft/manual_steam_trap/index.html diff --git a/src/data/railcraft/9.5.0/images/metal_platform.png b/static/browse/railcraft/metal_platform/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/metal_platform.png rename to static/browse/railcraft/metal_platform/icon.png diff --git a/prerender/browse/railcraft/metal_platform/index.html b/static/browse/railcraft/metal_platform/index.html similarity index 100% rename from prerender/browse/railcraft/metal_platform/index.html rename to static/browse/railcraft/metal_platform/index.html diff --git a/src/data/railcraft/9.5.0/images/metal_post.png b/static/browse/railcraft/metal_post/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/metal_post.png rename to static/browse/railcraft/metal_post/icon.png diff --git a/prerender/browse/railcraft/metal_post/index.html b/static/browse/railcraft/metal_post/index.html similarity index 100% rename from prerender/browse/railcraft/metal_post/index.html rename to static/browse/railcraft/metal_post/index.html diff --git a/src/data/railcraft/9.5.0/images/metals_chest.png b/static/browse/railcraft/metals_chest/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/metals_chest.png rename to static/browse/railcraft/metals_chest/icon.png diff --git a/prerender/browse/railcraft/metals_chest/index.html b/static/browse/railcraft/metals_chest/index.html similarity index 100% rename from prerender/browse/railcraft/metals_chest/index.html rename to static/browse/railcraft/metals_chest/index.html diff --git a/src/data/railcraft/9.5.0/images/mossy_stone_brick_wall.png b/static/browse/railcraft/mossy_stone_brick_wall/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/mossy_stone_brick_wall.png rename to static/browse/railcraft/mossy_stone_brick_wall/icon.png diff --git a/prerender/browse/railcraft/mossy_stone_brick_wall/index.html b/static/browse/railcraft/mossy_stone_brick_wall/index.html similarity index 100% rename from prerender/browse/railcraft/mossy_stone_brick_wall/index.html rename to static/browse/railcraft/mossy_stone_brick_wall/index.html diff --git a/src/data/railcraft/9.5.0/images/nether_block.png b/static/browse/railcraft/nether_block/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/nether_block.png rename to static/browse/railcraft/nether_block/icon.png diff --git a/prerender/browse/railcraft/nether_block/index.html b/static/browse/railcraft/nether_block/index.html similarity index 100% rename from prerender/browse/railcraft/nether_block/index.html rename to static/browse/railcraft/nether_block/index.html diff --git a/src/data/railcraft/9.5.0/images/nether_block_slab.png b/static/browse/railcraft/nether_block_slab/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/nether_block_slab.png rename to static/browse/railcraft/nether_block_slab/icon.png diff --git a/prerender/browse/railcraft/nether_block_slab/index.html b/static/browse/railcraft/nether_block_slab/index.html similarity index 100% rename from prerender/browse/railcraft/nether_block_slab/index.html rename to static/browse/railcraft/nether_block_slab/index.html diff --git a/src/data/railcraft/9.5.0/images/nether_block_stairs.png b/static/browse/railcraft/nether_block_stairs/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/nether_block_stairs.png rename to static/browse/railcraft/nether_block_stairs/icon.png diff --git a/prerender/browse/railcraft/nether_block_stairs/index.html b/static/browse/railcraft/nether_block_stairs/index.html similarity index 100% rename from prerender/browse/railcraft/nether_block_stairs/index.html rename to static/browse/railcraft/nether_block_stairs/index.html diff --git a/src/data/railcraft/9.5.0/images/nether_brick_wall.png b/static/browse/railcraft/nether_brick_wall/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/nether_brick_wall.png rename to static/browse/railcraft/nether_brick_wall/icon.png diff --git a/prerender/browse/railcraft/nether_brick_wall/index.html b/static/browse/railcraft/nether_brick_wall/index.html similarity index 100% rename from prerender/browse/railcraft/nether_brick_wall/index.html rename to static/browse/railcraft/nether_brick_wall/index.html diff --git a/src/data/railcraft/9.5.0/images/nether_cobble_slab.png b/static/browse/railcraft/nether_cobble_slab/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/nether_cobble_slab.png rename to static/browse/railcraft/nether_cobble_slab/icon.png diff --git a/prerender/browse/railcraft/nether_cobble_slab/index.html b/static/browse/railcraft/nether_cobble_slab/index.html similarity index 100% rename from prerender/browse/railcraft/nether_cobble_slab/index.html rename to static/browse/railcraft/nether_cobble_slab/index.html diff --git a/src/data/railcraft/9.5.0/images/nether_cobble_stairs.png b/static/browse/railcraft/nether_cobble_stairs/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/nether_cobble_stairs.png rename to static/browse/railcraft/nether_cobble_stairs/icon.png diff --git a/prerender/browse/railcraft/nether_cobble_stairs/index.html b/static/browse/railcraft/nether_cobble_stairs/index.html similarity index 100% rename from prerender/browse/railcraft/nether_cobble_stairs/index.html rename to static/browse/railcraft/nether_cobble_stairs/index.html diff --git a/src/data/railcraft/9.5.0/images/nether_cobblestone.png b/static/browse/railcraft/nether_cobblestone/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/nether_cobblestone.png rename to static/browse/railcraft/nether_cobblestone/icon.png diff --git a/prerender/browse/railcraft/nether_cobblestone/index.html b/static/browse/railcraft/nether_cobblestone/index.html similarity index 100% rename from prerender/browse/railcraft/nether_cobblestone/index.html rename to static/browse/railcraft/nether_cobblestone/index.html diff --git a/src/data/railcraft/9.5.0/images/nether_stone_lantern.png b/static/browse/railcraft/nether_stone_lantern/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/nether_stone_lantern.png rename to static/browse/railcraft/nether_stone_lantern/icon.png diff --git a/prerender/browse/railcraft/nether_stone_lantern/index.html b/static/browse/railcraft/nether_stone_lantern/index.html similarity index 100% rename from prerender/browse/railcraft/nether_stone_lantern/index.html rename to static/browse/railcraft/nether_stone_lantern/index.html diff --git a/src/data/railcraft/9.5.0/images/obsidian_dust.png b/static/browse/railcraft/obsidian_dust/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/obsidian_dust.png rename to static/browse/railcraft/obsidian_dust/icon.png diff --git a/prerender/browse/railcraft/obsidian_dust/index.html b/static/browse/railcraft/obsidian_dust/index.html similarity index 100% rename from prerender/browse/railcraft/obsidian_dust/index.html rename to static/browse/railcraft/obsidian_dust/index.html diff --git a/src/data/railcraft/9.5.0/images/obsidian_slab.png b/static/browse/railcraft/obsidian_slab/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/obsidian_slab.png rename to static/browse/railcraft/obsidian_slab/icon.png diff --git a/prerender/browse/railcraft/obsidian_slab/index.html b/static/browse/railcraft/obsidian_slab/index.html similarity index 100% rename from prerender/browse/railcraft/obsidian_slab/index.html rename to static/browse/railcraft/obsidian_slab/index.html diff --git a/src/data/railcraft/9.5.0/images/obsidian_stairs.png b/static/browse/railcraft/obsidian_stairs/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/obsidian_stairs.png rename to static/browse/railcraft/obsidian_stairs/icon.png diff --git a/prerender/browse/railcraft/obsidian_stairs/index.html b/static/browse/railcraft/obsidian_stairs/index.html similarity index 100% rename from prerender/browse/railcraft/obsidian_stairs/index.html rename to static/browse/railcraft/obsidian_stairs/index.html diff --git a/src/data/railcraft/9.5.0/images/obsidian_wall.png b/static/browse/railcraft/obsidian_wall/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/obsidian_wall.png rename to static/browse/railcraft/obsidian_wall/icon.png diff --git a/prerender/browse/railcraft/obsidian_wall/index.html b/static/browse/railcraft/obsidian_wall/index.html similarity index 100% rename from prerender/browse/railcraft/obsidian_wall/index.html rename to static/browse/railcraft/obsidian_wall/index.html diff --git a/src/data/railcraft/9.5.0/images/one_way_track.png b/static/browse/railcraft/one_way_track/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/one_way_track.png rename to static/browse/railcraft/one_way_track/icon.png diff --git a/prerender/browse/railcraft/one_way_track/index.html b/static/browse/railcraft/one_way_track/index.html similarity index 100% rename from prerender/browse/railcraft/one_way_track/index.html rename to static/browse/railcraft/one_way_track/index.html diff --git a/src/data/railcraft/9.5.0/images/orange_metal_platform.png b/static/browse/railcraft/orange_metal_platform/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/orange_metal_platform.png rename to static/browse/railcraft/orange_metal_platform/icon.png diff --git a/prerender/browse/railcraft/orange_metal_platform/index.html b/static/browse/railcraft/orange_metal_platform/index.html similarity index 100% rename from prerender/browse/railcraft/orange_metal_platform/index.html rename to static/browse/railcraft/orange_metal_platform/index.html diff --git a/src/data/railcraft/9.5.0/images/orange_metal_post.png b/static/browse/railcraft/orange_metal_post/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/orange_metal_post.png rename to static/browse/railcraft/orange_metal_post/icon.png diff --git a/prerender/browse/railcraft/orange_metal_post/index.html b/static/browse/railcraft/orange_metal_post/index.html similarity index 100% rename from prerender/browse/railcraft/orange_metal_post/index.html rename to static/browse/railcraft/orange_metal_post/index.html diff --git a/src/data/railcraft/9.5.0/images/ornate_abyssal_stone.png b/static/browse/railcraft/ornate_abyssal_stone/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/ornate_abyssal_stone.png rename to static/browse/railcraft/ornate_abyssal_stone/icon.png diff --git a/prerender/browse/railcraft/ornate_abyssal_stone/index.html b/static/browse/railcraft/ornate_abyssal_stone/index.html similarity index 100% rename from prerender/browse/railcraft/ornate_abyssal_stone/index.html rename to static/browse/railcraft/ornate_abyssal_stone/index.html diff --git a/src/data/railcraft/9.5.0/images/ornate_bleached_bone_stone.png b/static/browse/railcraft/ornate_bleached_bone_stone/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/ornate_bleached_bone_stone.png rename to static/browse/railcraft/ornate_bleached_bone_stone/icon.png diff --git a/prerender/browse/railcraft/ornate_bleached_bone_stone/index.html b/static/browse/railcraft/ornate_bleached_bone_stone/index.html similarity index 100% rename from prerender/browse/railcraft/ornate_bleached_bone_stone/index.html rename to static/browse/railcraft/ornate_bleached_bone_stone/index.html diff --git a/src/data/railcraft/9.5.0/images/ornate_blood_stained_stone.png b/static/browse/railcraft/ornate_blood_stained_stone/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/ornate_blood_stained_stone.png rename to static/browse/railcraft/ornate_blood_stained_stone/icon.png diff --git a/prerender/browse/railcraft/ornate_blood_stained_stone/index.html b/static/browse/railcraft/ornate_blood_stained_stone/index.html similarity index 100% rename from prerender/browse/railcraft/ornate_blood_stained_stone/index.html rename to static/browse/railcraft/ornate_blood_stained_stone/index.html diff --git a/src/data/railcraft/9.5.0/images/ornate_frost_bound_stone.png b/static/browse/railcraft/ornate_frost_bound_stone/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/ornate_frost_bound_stone.png rename to static/browse/railcraft/ornate_frost_bound_stone/icon.png diff --git a/prerender/browse/railcraft/ornate_frost_bound_stone/index.html b/static/browse/railcraft/ornate_frost_bound_stone/index.html similarity index 100% rename from prerender/browse/railcraft/ornate_frost_bound_stone/index.html rename to static/browse/railcraft/ornate_frost_bound_stone/index.html diff --git a/src/data/railcraft/9.5.0/images/ornate_infernal_stone.png b/static/browse/railcraft/ornate_infernal_stone/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/ornate_infernal_stone.png rename to static/browse/railcraft/ornate_infernal_stone/icon.png diff --git a/prerender/browse/railcraft/ornate_infernal_stone/index.html b/static/browse/railcraft/ornate_infernal_stone/index.html similarity index 100% rename from prerender/browse/railcraft/ornate_infernal_stone/index.html rename to static/browse/railcraft/ornate_infernal_stone/index.html diff --git a/src/data/railcraft/9.5.0/images/ornate_nether_stone.png b/static/browse/railcraft/ornate_nether_stone/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/ornate_nether_stone.png rename to static/browse/railcraft/ornate_nether_stone/icon.png diff --git a/prerender/browse/railcraft/ornate_nether_stone/index.html b/static/browse/railcraft/ornate_nether_stone/index.html similarity index 100% rename from prerender/browse/railcraft/ornate_nether_stone/index.html rename to static/browse/railcraft/ornate_nether_stone/index.html diff --git a/src/data/railcraft/9.5.0/images/ornate_quarried_stone.png b/static/browse/railcraft/ornate_quarried_stone/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/ornate_quarried_stone.png rename to static/browse/railcraft/ornate_quarried_stone/icon.png diff --git a/prerender/browse/railcraft/ornate_quarried_stone/index.html b/static/browse/railcraft/ornate_quarried_stone/index.html similarity index 100% rename from prerender/browse/railcraft/ornate_quarried_stone/index.html rename to static/browse/railcraft/ornate_quarried_stone/index.html diff --git a/src/data/railcraft/9.5.0/images/ornate_sandy_stone.png b/static/browse/railcraft/ornate_sandy_stone/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/ornate_sandy_stone.png rename to static/browse/railcraft/ornate_sandy_stone/icon.png diff --git a/prerender/browse/railcraft/ornate_sandy_stone/index.html b/static/browse/railcraft/ornate_sandy_stone/index.html similarity index 100% rename from prerender/browse/railcraft/ornate_sandy_stone/index.html rename to static/browse/railcraft/ornate_sandy_stone/index.html diff --git a/src/data/railcraft/9.5.0/images/packed_ice_slab.png b/static/browse/railcraft/packed_ice_slab/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/packed_ice_slab.png rename to static/browse/railcraft/packed_ice_slab/icon.png diff --git a/prerender/browse/railcraft/packed_ice_slab/index.html b/static/browse/railcraft/packed_ice_slab/index.html similarity index 100% rename from prerender/browse/railcraft/packed_ice_slab/index.html rename to static/browse/railcraft/packed_ice_slab/index.html diff --git a/src/data/railcraft/9.5.0/images/packed_ice_stairs.png b/static/browse/railcraft/packed_ice_stairs/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/packed_ice_stairs.png rename to static/browse/railcraft/packed_ice_stairs/icon.png diff --git a/prerender/browse/railcraft/packed_ice_stairs/index.html b/static/browse/railcraft/packed_ice_stairs/index.html similarity index 100% rename from prerender/browse/railcraft/packed_ice_stairs/index.html rename to static/browse/railcraft/packed_ice_stairs/index.html diff --git a/src/data/railcraft/9.5.0/images/personal_anchor.png b/static/browse/railcraft/personal_anchor/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/personal_anchor.png rename to static/browse/railcraft/personal_anchor/icon.png diff --git a/prerender/browse/railcraft/personal_anchor/index.html b/static/browse/railcraft/personal_anchor/index.html similarity index 100% rename from prerender/browse/railcraft/personal_anchor/index.html rename to static/browse/railcraft/personal_anchor/index.html diff --git a/src/data/railcraft/9.5.0/images/personal_anchor_cart.png b/static/browse/railcraft/personal_anchor_cart/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/personal_anchor_cart.png rename to static/browse/railcraft/personal_anchor_cart/icon.png diff --git a/prerender/browse/railcraft/personal_anchor_cart/index.html b/static/browse/railcraft/personal_anchor_cart/index.html similarity index 100% rename from prerender/browse/railcraft/personal_anchor_cart/index.html rename to static/browse/railcraft/personal_anchor_cart/index.html diff --git a/src/data/railcraft/9.5.0/images/pink_metal_platform.png b/static/browse/railcraft/pink_metal_platform/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/pink_metal_platform.png rename to static/browse/railcraft/pink_metal_platform/icon.png diff --git a/prerender/browse/railcraft/pink_metal_platform/index.html b/static/browse/railcraft/pink_metal_platform/index.html similarity index 100% rename from prerender/browse/railcraft/pink_metal_platform/index.html rename to static/browse/railcraft/pink_metal_platform/index.html diff --git a/src/data/railcraft/9.5.0/images/pink_metal_post.png b/static/browse/railcraft/pink_metal_post/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/pink_metal_post.png rename to static/browse/railcraft/pink_metal_post/icon.png diff --git a/prerender/browse/railcraft/pink_metal_post/index.html b/static/browse/railcraft/pink_metal_post/index.html similarity index 100% rename from prerender/browse/railcraft/pink_metal_post/index.html rename to static/browse/railcraft/pink_metal_post/index.html diff --git a/src/data/railcraft/9.5.0/images/poor_copper_ore.png b/static/browse/railcraft/poor_copper_ore/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/poor_copper_ore.png rename to static/browse/railcraft/poor_copper_ore/icon.png diff --git a/prerender/browse/railcraft/poor_copper_ore/index.html b/static/browse/railcraft/poor_copper_ore/index.html similarity index 100% rename from prerender/browse/railcraft/poor_copper_ore/index.html rename to static/browse/railcraft/poor_copper_ore/index.html diff --git a/src/data/railcraft/9.5.0/images/poor_gold_ore.png b/static/browse/railcraft/poor_gold_ore/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/poor_gold_ore.png rename to static/browse/railcraft/poor_gold_ore/icon.png diff --git a/prerender/browse/railcraft/poor_gold_ore/index.html b/static/browse/railcraft/poor_gold_ore/index.html similarity index 100% rename from prerender/browse/railcraft/poor_gold_ore/index.html rename to static/browse/railcraft/poor_gold_ore/index.html diff --git a/src/data/railcraft/9.5.0/images/poor_iron_ore.png b/static/browse/railcraft/poor_iron_ore/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/poor_iron_ore.png rename to static/browse/railcraft/poor_iron_ore/icon.png diff --git a/prerender/browse/railcraft/poor_iron_ore/index.html b/static/browse/railcraft/poor_iron_ore/index.html similarity index 100% rename from prerender/browse/railcraft/poor_iron_ore/index.html rename to static/browse/railcraft/poor_iron_ore/index.html diff --git a/src/data/railcraft/9.5.0/images/poor_lead_ore.png b/static/browse/railcraft/poor_lead_ore/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/poor_lead_ore.png rename to static/browse/railcraft/poor_lead_ore/icon.png diff --git a/prerender/browse/railcraft/poor_lead_ore/index.html b/static/browse/railcraft/poor_lead_ore/index.html similarity index 100% rename from prerender/browse/railcraft/poor_lead_ore/index.html rename to static/browse/railcraft/poor_lead_ore/index.html diff --git a/src/data/railcraft/9.5.0/images/poor_tin_ore.png b/static/browse/railcraft/poor_tin_ore/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/poor_tin_ore.png rename to static/browse/railcraft/poor_tin_ore/icon.png diff --git a/prerender/browse/railcraft/poor_tin_ore/index.html b/static/browse/railcraft/poor_tin_ore/index.html similarity index 100% rename from prerender/browse/railcraft/poor_tin_ore/index.html rename to static/browse/railcraft/poor_tin_ore/index.html diff --git a/src/data/railcraft/9.5.0/images/priming_track.png b/static/browse/railcraft/priming_track/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/priming_track.png rename to static/browse/railcraft/priming_track/icon.png diff --git a/prerender/browse/railcraft/priming_track/index.html b/static/browse/railcraft/priming_track/index.html similarity index 100% rename from prerender/browse/railcraft/priming_track/index.html rename to static/browse/railcraft/priming_track/index.html diff --git a/src/data/railcraft/9.5.0/images/pumpkin_cart.png b/static/browse/railcraft/pumpkin_cart/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/pumpkin_cart.png rename to static/browse/railcraft/pumpkin_cart/icon.png diff --git a/prerender/browse/railcraft/pumpkin_cart/index.html b/static/browse/railcraft/pumpkin_cart/index.html similarity index 100% rename from prerender/browse/railcraft/pumpkin_cart/index.html rename to static/browse/railcraft/pumpkin_cart/index.html diff --git a/src/data/railcraft/9.5.0/images/purple_metal_platform.png b/static/browse/railcraft/purple_metal_platform/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/purple_metal_platform.png rename to static/browse/railcraft/purple_metal_platform/icon.png diff --git a/prerender/browse/railcraft/purple_metal_platform/index.html b/static/browse/railcraft/purple_metal_platform/index.html similarity index 100% rename from prerender/browse/railcraft/purple_metal_platform/index.html rename to static/browse/railcraft/purple_metal_platform/index.html diff --git a/src/data/railcraft/9.5.0/images/purple_metal_post.png b/static/browse/railcraft/purple_metal_post/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/purple_metal_post.png rename to static/browse/railcraft/purple_metal_post/icon.png diff --git a/prerender/browse/railcraft/purple_metal_post/index.html b/static/browse/railcraft/purple_metal_post/index.html similarity index 100% rename from prerender/browse/railcraft/purple_metal_post/index.html rename to static/browse/railcraft/purple_metal_post/index.html diff --git a/src/data/railcraft/9.5.0/images/quarried_block.png b/static/browse/railcraft/quarried_block/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/quarried_block.png rename to static/browse/railcraft/quarried_block/icon.png diff --git a/prerender/browse/railcraft/quarried_block/index.html b/static/browse/railcraft/quarried_block/index.html similarity index 100% rename from prerender/browse/railcraft/quarried_block/index.html rename to static/browse/railcraft/quarried_block/index.html diff --git a/src/data/railcraft/9.5.0/images/quarried_block_slab.png b/static/browse/railcraft/quarried_block_slab/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/quarried_block_slab.png rename to static/browse/railcraft/quarried_block_slab/icon.png diff --git a/prerender/browse/railcraft/quarried_block_slab/index.html b/static/browse/railcraft/quarried_block_slab/index.html similarity index 100% rename from prerender/browse/railcraft/quarried_block_slab/index.html rename to static/browse/railcraft/quarried_block_slab/index.html diff --git a/src/data/railcraft/9.5.0/images/quarried_block_stairs.png b/static/browse/railcraft/quarried_block_stairs/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/quarried_block_stairs.png rename to static/browse/railcraft/quarried_block_stairs/icon.png diff --git a/prerender/browse/railcraft/quarried_block_stairs/index.html b/static/browse/railcraft/quarried_block_stairs/index.html similarity index 100% rename from prerender/browse/railcraft/quarried_block_stairs/index.html rename to static/browse/railcraft/quarried_block_stairs/index.html diff --git a/src/data/railcraft/9.5.0/images/quarried_brick.png b/static/browse/railcraft/quarried_brick/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/quarried_brick.png rename to static/browse/railcraft/quarried_brick/icon.png diff --git a/prerender/browse/railcraft/quarried_brick/index.html b/static/browse/railcraft/quarried_brick/index.html similarity index 100% rename from prerender/browse/railcraft/quarried_brick/index.html rename to static/browse/railcraft/quarried_brick/index.html diff --git a/src/data/railcraft/9.5.0/images/quarried_brick_slab.png b/static/browse/railcraft/quarried_brick_slab/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/quarried_brick_slab.png rename to static/browse/railcraft/quarried_brick_slab/icon.png diff --git a/prerender/browse/railcraft/quarried_brick_slab/index.html b/static/browse/railcraft/quarried_brick_slab/index.html similarity index 100% rename from prerender/browse/railcraft/quarried_brick_slab/index.html rename to static/browse/railcraft/quarried_brick_slab/index.html diff --git a/src/data/railcraft/9.5.0/images/quarried_brick_stairs.png b/static/browse/railcraft/quarried_brick_stairs/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/quarried_brick_stairs.png rename to static/browse/railcraft/quarried_brick_stairs/icon.png diff --git a/prerender/browse/railcraft/quarried_brick_stairs/index.html b/static/browse/railcraft/quarried_brick_stairs/index.html similarity index 100% rename from prerender/browse/railcraft/quarried_brick_stairs/index.html rename to static/browse/railcraft/quarried_brick_stairs/index.html diff --git a/src/data/railcraft/9.5.0/images/quarried_brick_wall.png b/static/browse/railcraft/quarried_brick_wall/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/quarried_brick_wall.png rename to static/browse/railcraft/quarried_brick_wall/icon.png diff --git a/prerender/browse/railcraft/quarried_brick_wall/index.html b/static/browse/railcraft/quarried_brick_wall/index.html similarity index 100% rename from prerender/browse/railcraft/quarried_brick_wall/index.html rename to static/browse/railcraft/quarried_brick_wall/index.html diff --git a/src/data/railcraft/9.5.0/images/quarried_cobble_slab.png b/static/browse/railcraft/quarried_cobble_slab/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/quarried_cobble_slab.png rename to static/browse/railcraft/quarried_cobble_slab/icon.png diff --git a/prerender/browse/railcraft/quarried_cobble_slab/index.html b/static/browse/railcraft/quarried_cobble_slab/index.html similarity index 100% rename from prerender/browse/railcraft/quarried_cobble_slab/index.html rename to static/browse/railcraft/quarried_cobble_slab/index.html diff --git a/src/data/railcraft/9.5.0/images/quarried_cobble_stairs.png b/static/browse/railcraft/quarried_cobble_stairs/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/quarried_cobble_stairs.png rename to static/browse/railcraft/quarried_cobble_stairs/icon.png diff --git a/prerender/browse/railcraft/quarried_cobble_stairs/index.html b/static/browse/railcraft/quarried_cobble_stairs/index.html similarity index 100% rename from prerender/browse/railcraft/quarried_cobble_stairs/index.html rename to static/browse/railcraft/quarried_cobble_stairs/index.html diff --git a/src/data/railcraft/9.5.0/images/quarried_cobblestone.png b/static/browse/railcraft/quarried_cobblestone/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/quarried_cobblestone.png rename to static/browse/railcraft/quarried_cobblestone/icon.png diff --git a/prerender/browse/railcraft/quarried_cobblestone/index.html b/static/browse/railcraft/quarried_cobblestone/index.html similarity index 100% rename from prerender/browse/railcraft/quarried_cobblestone/index.html rename to static/browse/railcraft/quarried_cobblestone/index.html diff --git a/src/data/railcraft/9.5.0/images/quarried_stone.png b/static/browse/railcraft/quarried_stone/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/quarried_stone.png rename to static/browse/railcraft/quarried_stone/icon.png diff --git a/prerender/browse/railcraft/quarried_stone/index.html b/static/browse/railcraft/quarried_stone/index.html similarity index 100% rename from prerender/browse/railcraft/quarried_stone/index.html rename to static/browse/railcraft/quarried_stone/index.html diff --git a/src/data/railcraft/9.5.0/images/quarried_stone_lantern.png b/static/browse/railcraft/quarried_stone_lantern/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/quarried_stone_lantern.png rename to static/browse/railcraft/quarried_stone_lantern/icon.png diff --git a/prerender/browse/railcraft/quarried_stone_lantern/index.html b/static/browse/railcraft/quarried_stone_lantern/index.html similarity index 100% rename from prerender/browse/railcraft/quarried_stone_lantern/index.html rename to static/browse/railcraft/quarried_stone_lantern/index.html diff --git a/src/data/railcraft/9.5.0/images/quartz_wall.png b/static/browse/railcraft/quartz_wall/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/quartz_wall.png rename to static/browse/railcraft/quartz_wall/icon.png diff --git a/prerender/browse/railcraft/quartz_wall/index.html b/static/browse/railcraft/quartz_wall/index.html similarity index 100% rename from prerender/browse/railcraft/quartz_wall/index.html rename to static/browse/railcraft/quartz_wall/index.html diff --git a/src/data/railcraft/9.5.0/images/railway_ticket.png b/static/browse/railcraft/railway_ticket/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/railway_ticket.png rename to static/browse/railcraft/railway_ticket/icon.png diff --git a/prerender/browse/railcraft/railway_ticket/index.html b/static/browse/railcraft/railway_ticket/index.html similarity index 100% rename from prerender/browse/railcraft/railway_ticket/index.html rename to static/browse/railcraft/railway_ticket/index.html diff --git a/src/data/railcraft/9.5.0/images/raw_firestone.png b/static/browse/railcraft/raw_firestone/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/raw_firestone.png rename to static/browse/railcraft/raw_firestone/icon.png diff --git a/prerender/browse/railcraft/raw_firestone/index.html b/static/browse/railcraft/raw_firestone/index.html similarity index 100% rename from prerender/browse/railcraft/raw_firestone/index.html rename to static/browse/railcraft/raw_firestone/index.html diff --git a/src/data/railcraft/9.5.0/images/rebar.png b/static/browse/railcraft/rebar/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/rebar.png rename to static/browse/railcraft/rebar/icon.png diff --git a/prerender/browse/railcraft/rebar/index.html b/static/browse/railcraft/rebar/index.html similarity index 100% rename from prerender/browse/railcraft/rebar/index.html rename to static/browse/railcraft/rebar/index.html diff --git a/src/data/railcraft/9.5.0/images/receiver_circuit.png b/static/browse/railcraft/receiver_circuit/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/receiver_circuit.png rename to static/browse/railcraft/receiver_circuit/icon.png diff --git a/prerender/browse/railcraft/receiver_circuit/index.html b/static/browse/railcraft/receiver_circuit/index.html similarity index 100% rename from prerender/browse/railcraft/receiver_circuit/index.html rename to static/browse/railcraft/receiver_circuit/index.html diff --git a/src/data/railcraft/9.5.0/images/recharging_firestone.png b/static/browse/railcraft/recharging_firestone/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/recharging_firestone.png rename to static/browse/railcraft/recharging_firestone/icon.png diff --git a/src/data/railcraft/9.5.0/images/red_metal_platform.png b/static/browse/railcraft/red_metal_platform/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/red_metal_platform.png rename to static/browse/railcraft/red_metal_platform/icon.png diff --git a/prerender/browse/railcraft/red_metal_platform/index.html b/static/browse/railcraft/red_metal_platform/index.html similarity index 100% rename from prerender/browse/railcraft/red_metal_platform/index.html rename to static/browse/railcraft/red_metal_platform/index.html diff --git a/src/data/railcraft/9.5.0/images/red_metal_post.png b/static/browse/railcraft/red_metal_post/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/red_metal_post.png rename to static/browse/railcraft/red_metal_post/icon.png diff --git a/prerender/browse/railcraft/red_metal_post/index.html b/static/browse/railcraft/red_metal_post/index.html similarity index 100% rename from prerender/browse/railcraft/red_metal_post/index.html rename to static/browse/railcraft/red_metal_post/index.html diff --git a/src/data/railcraft/9.5.0/images/refined_firestone.png b/static/browse/railcraft/refined_firestone/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/refined_firestone.png rename to static/browse/railcraft/refined_firestone/icon.png diff --git a/prerender/browse/railcraft/refined_firestone/index.html b/static/browse/railcraft/refined_firestone/index.html similarity index 100% rename from prerender/browse/railcraft/refined_firestone/index.html rename to static/browse/railcraft/refined_firestone/index.html diff --git a/src/data/railcraft/9.5.0/images/refined_firestone_2.png b/static/browse/railcraft/refined_firestone_2/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/refined_firestone_2.png rename to static/browse/railcraft/refined_firestone_2/icon.png diff --git a/src/data/railcraft/9.5.0/images/reinforced_booster_track.png b/static/browse/railcraft/reinforced_booster_track/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/reinforced_booster_track.png rename to static/browse/railcraft/reinforced_booster_track/icon.png diff --git a/prerender/browse/railcraft/reinforced_booster_track/index.html b/static/browse/railcraft/reinforced_booster_track/index.html similarity index 100% rename from prerender/browse/railcraft/reinforced_booster_track/index.html rename to static/browse/railcraft/reinforced_booster_track/index.html diff --git a/src/data/railcraft/9.5.0/images/reinforced_crowbar.png b/static/browse/railcraft/reinforced_crowbar/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/reinforced_crowbar.png rename to static/browse/railcraft/reinforced_crowbar/icon.png diff --git a/prerender/browse/railcraft/reinforced_crowbar/index.html b/static/browse/railcraft/reinforced_crowbar/index.html similarity index 100% rename from prerender/browse/railcraft/reinforced_crowbar/index.html rename to static/browse/railcraft/reinforced_crowbar/index.html diff --git a/src/data/railcraft/9.5.0/images/reinforced_junction_track.png b/static/browse/railcraft/reinforced_junction_track/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/reinforced_junction_track.png rename to static/browse/railcraft/reinforced_junction_track/icon.png diff --git a/prerender/browse/railcraft/reinforced_junction_track/index.html b/static/browse/railcraft/reinforced_junction_track/index.html similarity index 100% rename from prerender/browse/railcraft/reinforced_junction_track/index.html rename to static/browse/railcraft/reinforced_junction_track/index.html diff --git a/src/data/railcraft/9.5.0/images/reinforced_rail.png b/static/browse/railcraft/reinforced_rail/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/reinforced_rail.png rename to static/browse/railcraft/reinforced_rail/icon.png diff --git a/prerender/browse/railcraft/reinforced_rail/index.html b/static/browse/railcraft/reinforced_rail/index.html similarity index 100% rename from prerender/browse/railcraft/reinforced_rail/index.html rename to static/browse/railcraft/reinforced_rail/index.html diff --git a/src/data/railcraft/9.5.0/images/reinforced_switch_track.png b/static/browse/railcraft/reinforced_switch_track/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/reinforced_switch_track.png rename to static/browse/railcraft/reinforced_switch_track/icon.png diff --git a/prerender/browse/railcraft/reinforced_switch_track/index.html b/static/browse/railcraft/reinforced_switch_track/index.html similarity index 100% rename from prerender/browse/railcraft/reinforced_switch_track/index.html rename to static/browse/railcraft/reinforced_switch_track/index.html diff --git a/src/data/railcraft/9.5.0/images/reinforced_track.png b/static/browse/railcraft/reinforced_track/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/reinforced_track.png rename to static/browse/railcraft/reinforced_track/icon.png diff --git a/prerender/browse/railcraft/reinforced_track/index.html b/static/browse/railcraft/reinforced_track/index.html similarity index 100% rename from prerender/browse/railcraft/reinforced_track/index.html rename to static/browse/railcraft/reinforced_track/index.html diff --git a/src/data/railcraft/9.5.0/images/reinforced_wye_track.png b/static/browse/railcraft/reinforced_wye_track/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/reinforced_wye_track.png rename to static/browse/railcraft/reinforced_wye_track/icon.png diff --git a/prerender/browse/railcraft/reinforced_wye_track/index.html b/static/browse/railcraft/reinforced_wye_track/index.html similarity index 100% rename from prerender/browse/railcraft/reinforced_wye_track/index.html rename to static/browse/railcraft/reinforced_wye_track/index.html diff --git a/src/data/railcraft/9.5.0/images/residual_heat.png b/static/browse/railcraft/residual_heat/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/residual_heat.png rename to static/browse/railcraft/residual_heat/icon.png diff --git a/src/data/railcraft/9.5.0/images/rock_crusher.png b/static/browse/railcraft/rock_crusher/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/rock_crusher.png rename to static/browse/railcraft/rock_crusher/icon.png diff --git a/prerender/browse/railcraft/rock_crusher/index.html b/static/browse/railcraft/rock_crusher/index.html similarity index 100% rename from prerender/browse/railcraft/rock_crusher/index.html rename to static/browse/railcraft/rock_crusher/index.html diff --git a/src/data/railcraft/9.5.0/images/rock_crusher_block.png b/static/browse/railcraft/rock_crusher_block/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/rock_crusher_block.png rename to static/browse/railcraft/rock_crusher_block/icon.png diff --git a/prerender/browse/railcraft/rock_crusher_block/index.html b/static/browse/railcraft/rock_crusher_block/index.html similarity index 100% rename from prerender/browse/railcraft/rock_crusher_block/index.html rename to static/browse/railcraft/rock_crusher_block/index.html diff --git a/src/data/railcraft/9.5.0/images/rock_crusher_layer.png b/static/browse/railcraft/rock_crusher_layer/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/rock_crusher_layer.png rename to static/browse/railcraft/rock_crusher_layer/icon.png diff --git a/prerender/browse/railcraft/rock_crusher_layer/index.html b/static/browse/railcraft/rock_crusher_layer/index.html similarity index 100% rename from prerender/browse/railcraft/rock_crusher_layer/index.html rename to static/browse/railcraft/rock_crusher_layer/index.html diff --git a/src/data/railcraft/9.5.0/images/rolling_machine.png b/static/browse/railcraft/rolling_machine/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/rolling_machine.png rename to static/browse/railcraft/rolling_machine/icon.png diff --git a/prerender/browse/railcraft/rolling_machine/index.html b/static/browse/railcraft/rolling_machine/index.html similarity index 100% rename from prerender/browse/railcraft/rolling_machine/index.html rename to static/browse/railcraft/rolling_machine/index.html diff --git a/src/data/railcraft/9.5.0/images/routing_switch_motor.png b/static/browse/railcraft/routing_switch_motor/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/routing_switch_motor.png rename to static/browse/railcraft/routing_switch_motor/icon.png diff --git a/prerender/browse/railcraft/routing_switch_motor/index.html b/static/browse/railcraft/routing_switch_motor/index.html similarity index 100% rename from prerender/browse/railcraft/routing_switch_motor/index.html rename to static/browse/railcraft/routing_switch_motor/index.html diff --git a/src/data/railcraft/9.5.0/images/routing_table.png b/static/browse/railcraft/routing_table/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/routing_table.png rename to static/browse/railcraft/routing_table/icon.png diff --git a/prerender/browse/railcraft/routing_table/index.html b/static/browse/railcraft/routing_table/index.html similarity index 100% rename from prerender/browse/railcraft/routing_table/index.html rename to static/browse/railcraft/routing_table/index.html diff --git a/src/data/railcraft/9.5.0/images/routing_track.png b/static/browse/railcraft/routing_track/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/routing_track.png rename to static/browse/railcraft/routing_track/icon.png diff --git a/prerender/browse/railcraft/routing_track/index.html b/static/browse/railcraft/routing_track/index.html similarity index 100% rename from prerender/browse/railcraft/routing_track/index.html rename to static/browse/railcraft/routing_track/index.html diff --git a/src/data/railcraft/9.5.0/images/saltpeter.png b/static/browse/railcraft/saltpeter/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/saltpeter.png rename to static/browse/railcraft/saltpeter/icon.png diff --git a/prerender/browse/railcraft/saltpeter/index.html b/static/browse/railcraft/saltpeter/index.html similarity index 100% rename from prerender/browse/railcraft/saltpeter/index.html rename to static/browse/railcraft/saltpeter/index.html diff --git a/src/data/railcraft/9.5.0/images/saltpeter_ore.png b/static/browse/railcraft/saltpeter_ore/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/saltpeter_ore.png rename to static/browse/railcraft/saltpeter_ore/icon.png diff --git a/prerender/browse/railcraft/saltpeter_ore/index.html b/static/browse/railcraft/saltpeter_ore/index.html similarity index 100% rename from prerender/browse/railcraft/saltpeter_ore/index.html rename to static/browse/railcraft/saltpeter_ore/index.html diff --git a/src/data/railcraft/9.5.0/images/saltpeter_ore_spawner.png b/static/browse/railcraft/saltpeter_ore_spawner/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/saltpeter_ore_spawner.png rename to static/browse/railcraft/saltpeter_ore_spawner/icon.png diff --git a/src/data/railcraft/9.5.0/images/sandstone_lantern.png b/static/browse/railcraft/sandstone_lantern/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/sandstone_lantern.png rename to static/browse/railcraft/sandstone_lantern/icon.png diff --git a/prerender/browse/railcraft/sandstone_lantern/index.html b/static/browse/railcraft/sandstone_lantern/index.html similarity index 100% rename from prerender/browse/railcraft/sandstone_lantern/index.html rename to static/browse/railcraft/sandstone_lantern/index.html diff --git a/src/data/railcraft/9.5.0/images/sandstone_wall.png b/static/browse/railcraft/sandstone_wall/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/sandstone_wall.png rename to static/browse/railcraft/sandstone_wall/icon.png diff --git a/prerender/browse/railcraft/sandstone_wall/index.html b/static/browse/railcraft/sandstone_wall/index.html similarity index 100% rename from prerender/browse/railcraft/sandstone_wall/index.html rename to static/browse/railcraft/sandstone_wall/index.html diff --git a/src/data/railcraft/9.5.0/images/sandy_block.png b/static/browse/railcraft/sandy_block/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/sandy_block.png rename to static/browse/railcraft/sandy_block/icon.png diff --git a/prerender/browse/railcraft/sandy_block/index.html b/static/browse/railcraft/sandy_block/index.html similarity index 100% rename from prerender/browse/railcraft/sandy_block/index.html rename to static/browse/railcraft/sandy_block/index.html diff --git a/src/data/railcraft/9.5.0/images/sandy_block_slab.png b/static/browse/railcraft/sandy_block_slab/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/sandy_block_slab.png rename to static/browse/railcraft/sandy_block_slab/icon.png diff --git a/prerender/browse/railcraft/sandy_block_slab/index.html b/static/browse/railcraft/sandy_block_slab/index.html similarity index 100% rename from prerender/browse/railcraft/sandy_block_slab/index.html rename to static/browse/railcraft/sandy_block_slab/index.html diff --git a/src/data/railcraft/9.5.0/images/sandy_block_stairs.png b/static/browse/railcraft/sandy_block_stairs/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/sandy_block_stairs.png rename to static/browse/railcraft/sandy_block_stairs/icon.png diff --git a/prerender/browse/railcraft/sandy_block_stairs/index.html b/static/browse/railcraft/sandy_block_stairs/index.html similarity index 100% rename from prerender/browse/railcraft/sandy_block_stairs/index.html rename to static/browse/railcraft/sandy_block_stairs/index.html diff --git a/src/data/railcraft/9.5.0/images/sandy_brick.png b/static/browse/railcraft/sandy_brick/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/sandy_brick.png rename to static/browse/railcraft/sandy_brick/icon.png diff --git a/prerender/browse/railcraft/sandy_brick/index.html b/static/browse/railcraft/sandy_brick/index.html similarity index 100% rename from prerender/browse/railcraft/sandy_brick/index.html rename to static/browse/railcraft/sandy_brick/index.html diff --git a/src/data/railcraft/9.5.0/images/sandy_brick_slab.png b/static/browse/railcraft/sandy_brick_slab/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/sandy_brick_slab.png rename to static/browse/railcraft/sandy_brick_slab/icon.png diff --git a/prerender/browse/railcraft/sandy_brick_slab/index.html b/static/browse/railcraft/sandy_brick_slab/index.html similarity index 100% rename from prerender/browse/railcraft/sandy_brick_slab/index.html rename to static/browse/railcraft/sandy_brick_slab/index.html diff --git a/src/data/railcraft/9.5.0/images/sandy_brick_stairs.png b/static/browse/railcraft/sandy_brick_stairs/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/sandy_brick_stairs.png rename to static/browse/railcraft/sandy_brick_stairs/icon.png diff --git a/prerender/browse/railcraft/sandy_brick_stairs/index.html b/static/browse/railcraft/sandy_brick_stairs/index.html similarity index 100% rename from prerender/browse/railcraft/sandy_brick_stairs/index.html rename to static/browse/railcraft/sandy_brick_stairs/index.html diff --git a/src/data/railcraft/9.5.0/images/sandy_brick_wall.png b/static/browse/railcraft/sandy_brick_wall/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/sandy_brick_wall.png rename to static/browse/railcraft/sandy_brick_wall/icon.png diff --git a/prerender/browse/railcraft/sandy_brick_wall/index.html b/static/browse/railcraft/sandy_brick_wall/index.html similarity index 100% rename from prerender/browse/railcraft/sandy_brick_wall/index.html rename to static/browse/railcraft/sandy_brick_wall/index.html diff --git a/src/data/railcraft/9.5.0/images/sandy_cobble_slab.png b/static/browse/railcraft/sandy_cobble_slab/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/sandy_cobble_slab.png rename to static/browse/railcraft/sandy_cobble_slab/icon.png diff --git a/prerender/browse/railcraft/sandy_cobble_slab/index.html b/static/browse/railcraft/sandy_cobble_slab/index.html similarity index 100% rename from prerender/browse/railcraft/sandy_cobble_slab/index.html rename to static/browse/railcraft/sandy_cobble_slab/index.html diff --git a/src/data/railcraft/9.5.0/images/sandy_cobble_stairs.png b/static/browse/railcraft/sandy_cobble_stairs/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/sandy_cobble_stairs.png rename to static/browse/railcraft/sandy_cobble_stairs/icon.png diff --git a/prerender/browse/railcraft/sandy_cobble_stairs/index.html b/static/browse/railcraft/sandy_cobble_stairs/index.html similarity index 100% rename from prerender/browse/railcraft/sandy_cobble_stairs/index.html rename to static/browse/railcraft/sandy_cobble_stairs/index.html diff --git a/src/data/railcraft/9.5.0/images/sandy_cobblestone.png b/static/browse/railcraft/sandy_cobblestone/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/sandy_cobblestone.png rename to static/browse/railcraft/sandy_cobblestone/icon.png diff --git a/prerender/browse/railcraft/sandy_cobblestone/index.html b/static/browse/railcraft/sandy_cobblestone/index.html similarity index 100% rename from prerender/browse/railcraft/sandy_cobblestone/index.html rename to static/browse/railcraft/sandy_cobblestone/index.html diff --git a/src/data/railcraft/9.5.0/images/sandy_stone_lantern.png b/static/browse/railcraft/sandy_stone_lantern/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/sandy_stone_lantern.png rename to static/browse/railcraft/sandy_stone_lantern/icon.png diff --git a/prerender/browse/railcraft/sandy_stone_lantern/index.html b/static/browse/railcraft/sandy_stone_lantern/index.html similarity index 100% rename from prerender/browse/railcraft/sandy_stone_lantern/index.html rename to static/browse/railcraft/sandy_stone_lantern/index.html diff --git a/src/data/railcraft/9.5.0/images/signal_block_relay_box.png b/static/browse/railcraft/signal_block_relay_box/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/signal_block_relay_box.png rename to static/browse/railcraft/signal_block_relay_box/icon.png diff --git a/prerender/browse/railcraft/signal_block_relay_box/index.html b/static/browse/railcraft/signal_block_relay_box/index.html similarity index 100% rename from prerender/browse/railcraft/signal_block_relay_box/index.html rename to static/browse/railcraft/signal_block_relay_box/index.html diff --git a/src/data/railcraft/9.5.0/images/signal_block_surveyor.png b/static/browse/railcraft/signal_block_surveyor/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/signal_block_surveyor.png rename to static/browse/railcraft/signal_block_surveyor/icon.png diff --git a/prerender/browse/railcraft/signal_block_surveyor/index.html b/static/browse/railcraft/signal_block_surveyor/index.html similarity index 100% rename from prerender/browse/railcraft/signal_block_surveyor/index.html rename to static/browse/railcraft/signal_block_surveyor/index.html diff --git a/src/data/railcraft/9.5.0/images/signal_capacitor_box.png b/static/browse/railcraft/signal_capacitor_box/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/signal_capacitor_box.png rename to static/browse/railcraft/signal_capacitor_box/icon.png diff --git a/prerender/browse/railcraft/signal_capacitor_box/index.html b/static/browse/railcraft/signal_capacitor_box/index.html similarity index 100% rename from prerender/browse/railcraft/signal_capacitor_box/index.html rename to static/browse/railcraft/signal_capacitor_box/index.html diff --git a/src/data/railcraft/9.5.0/images/signal_circuit.png b/static/browse/railcraft/signal_circuit/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/signal_circuit.png rename to static/browse/railcraft/signal_circuit/icon.png diff --git a/prerender/browse/railcraft/signal_circuit/index.html b/static/browse/railcraft/signal_circuit/index.html similarity index 100% rename from prerender/browse/railcraft/signal_circuit/index.html rename to static/browse/railcraft/signal_circuit/index.html diff --git a/src/data/railcraft/9.5.0/images/signal_controller_box.png b/static/browse/railcraft/signal_controller_box/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/signal_controller_box.png rename to static/browse/railcraft/signal_controller_box/icon.png diff --git a/prerender/browse/railcraft/signal_controller_box/index.html b/static/browse/railcraft/signal_controller_box/index.html similarity index 100% rename from prerender/browse/railcraft/signal_controller_box/index.html rename to static/browse/railcraft/signal_controller_box/index.html diff --git a/src/data/railcraft/9.5.0/images/signal_interlock_box.png b/static/browse/railcraft/signal_interlock_box/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/signal_interlock_box.png rename to static/browse/railcraft/signal_interlock_box/icon.png diff --git a/prerender/browse/railcraft/signal_interlock_box/index.html b/static/browse/railcraft/signal_interlock_box/index.html similarity index 100% rename from prerender/browse/railcraft/signal_interlock_box/index.html rename to static/browse/railcraft/signal_interlock_box/index.html diff --git a/src/data/railcraft/9.5.0/images/signal_lamp.png b/static/browse/railcraft/signal_lamp/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/signal_lamp.png rename to static/browse/railcraft/signal_lamp/icon.png diff --git a/prerender/browse/railcraft/signal_lamp/index.html b/static/browse/railcraft/signal_lamp/index.html similarity index 100% rename from prerender/browse/railcraft/signal_lamp/index.html rename to static/browse/railcraft/signal_lamp/index.html diff --git a/src/data/railcraft/9.5.0/images/signal_receiver_box.png b/static/browse/railcraft/signal_receiver_box/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/signal_receiver_box.png rename to static/browse/railcraft/signal_receiver_box/icon.png diff --git a/prerender/browse/railcraft/signal_receiver_box/index.html b/static/browse/railcraft/signal_receiver_box/index.html similarity index 100% rename from prerender/browse/railcraft/signal_receiver_box/index.html rename to static/browse/railcraft/signal_receiver_box/index.html diff --git a/src/data/railcraft/9.5.0/images/signal_sequencer_box.png b/static/browse/railcraft/signal_sequencer_box/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/signal_sequencer_box.png rename to static/browse/railcraft/signal_sequencer_box/icon.png diff --git a/prerender/browse/railcraft/signal_sequencer_box/index.html b/static/browse/railcraft/signal_sequencer_box/index.html similarity index 100% rename from prerender/browse/railcraft/signal_sequencer_box/index.html rename to static/browse/railcraft/signal_sequencer_box/index.html diff --git a/src/data/railcraft/9.5.0/images/signal_tuner.png b/static/browse/railcraft/signal_tuner/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/signal_tuner.png rename to static/browse/railcraft/signal_tuner/icon.png diff --git a/prerender/browse/railcraft/signal_tuner/index.html b/static/browse/railcraft/signal_tuner/index.html similarity index 100% rename from prerender/browse/railcraft/signal_tuner/index.html rename to static/browse/railcraft/signal_tuner/index.html diff --git a/src/data/railcraft/9.5.0/images/slightly_damaged_anvil.png b/static/browse/railcraft/slightly_damaged_anvil/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/slightly_damaged_anvil.png rename to static/browse/railcraft/slightly_damaged_anvil/icon.png diff --git a/src/data/railcraft/9.5.0/images/smoker.png b/static/browse/railcraft/smoker/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/smoker.png rename to static/browse/railcraft/smoker/icon.png diff --git a/prerender/browse/railcraft/smoker/index.html b/static/browse/railcraft/smoker/index.html similarity index 100% rename from prerender/browse/railcraft/smoker/index.html rename to static/browse/railcraft/smoker/index.html diff --git a/src/data/railcraft/9.5.0/images/smooth_sandstone_wall.png b/static/browse/railcraft/smooth_sandstone_wall/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/smooth_sandstone_wall.png rename to static/browse/railcraft/smooth_sandstone_wall/icon.png diff --git a/prerender/browse/railcraft/smooth_sandstone_wall/index.html b/static/browse/railcraft/smooth_sandstone_wall/index.html similarity index 100% rename from prerender/browse/railcraft/smooth_sandstone_wall/index.html rename to static/browse/railcraft/smooth_sandstone_wall/index.html diff --git a/src/data/railcraft/9.5.0/images/snow_slab.png b/static/browse/railcraft/snow_slab/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/snow_slab.png rename to static/browse/railcraft/snow_slab/icon.png diff --git a/prerender/browse/railcraft/snow_slab/index.html b/static/browse/railcraft/snow_slab/index.html similarity index 100% rename from prerender/browse/railcraft/snow_slab/index.html rename to static/browse/railcraft/snow_slab/index.html diff --git a/src/data/railcraft/9.5.0/images/snow_stairs.png b/static/browse/railcraft/snow_stairs/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/snow_stairs.png rename to static/browse/railcraft/snow_stairs/icon.png diff --git a/prerender/browse/railcraft/snow_stairs/index.html b/static/browse/railcraft/snow_stairs/index.html similarity index 100% rename from prerender/browse/railcraft/snow_stairs/index.html rename to static/browse/railcraft/snow_stairs/index.html diff --git a/src/data/railcraft/9.5.0/images/snow_wall.png b/static/browse/railcraft/snow_wall/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/snow_wall.png rename to static/browse/railcraft/snow_wall/icon.png diff --git a/prerender/browse/railcraft/snow_wall/index.html b/static/browse/railcraft/snow_wall/index.html similarity index 100% rename from prerender/browse/railcraft/snow_wall/index.html rename to static/browse/railcraft/snow_wall/index.html diff --git a/src/data/railcraft/9.5.0/images/solid_fueled_boiler_firebox.png b/static/browse/railcraft/solid_fueled_boiler_firebox/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/solid_fueled_boiler_firebox.png rename to static/browse/railcraft/solid_fueled_boiler_firebox/icon.png diff --git a/prerender/browse/railcraft/solid_fueled_boiler_firebox/index.html b/static/browse/railcraft/solid_fueled_boiler_firebox/index.html similarity index 100% rename from prerender/browse/railcraft/solid_fueled_boiler_firebox/index.html rename to static/browse/railcraft/solid_fueled_boiler_firebox/index.html diff --git a/src/data/railcraft/9.5.0/images/standard_rail.png b/static/browse/railcraft/standard_rail/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/standard_rail.png rename to static/browse/railcraft/standard_rail/icon.png diff --git a/prerender/browse/railcraft/standard_rail/index.html b/static/browse/railcraft/standard_rail/index.html similarity index 100% rename from prerender/browse/railcraft/standard_rail/index.html rename to static/browse/railcraft/standard_rail/index.html diff --git a/src/data/railcraft/9.5.0/images/steam.png b/static/browse/railcraft/steam/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/steam.png rename to static/browse/railcraft/steam/icon.png diff --git a/prerender/browse/railcraft/steam/index.html b/static/browse/railcraft/steam/index.html similarity index 100% rename from prerender/browse/railcraft/steam/index.html rename to static/browse/railcraft/steam/index.html diff --git a/src/data/railcraft/9.5.0/images/steam_boiler_simple.png b/static/browse/railcraft/steam_boiler_simple/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/steam_boiler_simple.png rename to static/browse/railcraft/steam_boiler_simple/icon.png diff --git a/prerender/browse/railcraft/steam_boiler_simple/index.html b/static/browse/railcraft/steam_boiler_simple/index.html similarity index 100% rename from prerender/browse/railcraft/steam_boiler_simple/index.html rename to static/browse/railcraft/steam_boiler_simple/index.html diff --git a/src/data/railcraft/9.5.0/images/steam_bottle.png b/static/browse/railcraft/steam_bottle/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/steam_bottle.png rename to static/browse/railcraft/steam_bottle/icon.png diff --git a/prerender/browse/railcraft/steam_bottle/index.html b/static/browse/railcraft/steam_bottle/index.html similarity index 100% rename from prerender/browse/railcraft/steam_bottle/index.html rename to static/browse/railcraft/steam_bottle/index.html diff --git a/src/data/railcraft/9.5.0/images/steam_locomotive.png b/static/browse/railcraft/steam_locomotive/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/steam_locomotive.png rename to static/browse/railcraft/steam_locomotive/icon.png diff --git a/prerender/browse/railcraft/steam_locomotive/index.html b/static/browse/railcraft/steam_locomotive/index.html similarity index 100% rename from prerender/browse/railcraft/steam_locomotive/index.html rename to static/browse/railcraft/steam_locomotive/index.html diff --git a/src/data/railcraft/9.5.0/images/steam_oven.png b/static/browse/railcraft/steam_oven/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/steam_oven.png rename to static/browse/railcraft/steam_oven/icon.png diff --git a/prerender/browse/railcraft/steam_oven/index.html b/static/browse/railcraft/steam_oven/index.html similarity index 100% rename from prerender/browse/railcraft/steam_oven/index.html rename to static/browse/railcraft/steam_oven/index.html diff --git a/src/data/railcraft/9.5.0/images/steam_turbine_housing.png b/static/browse/railcraft/steam_turbine_housing/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/steam_turbine_housing.png rename to static/browse/railcraft/steam_turbine_housing/icon.png diff --git a/prerender/browse/railcraft/steam_turbine_housing/index.html b/static/browse/railcraft/steam_turbine_housing/index.html similarity index 100% rename from prerender/browse/railcraft/steam_turbine_housing/index.html rename to static/browse/railcraft/steam_turbine_housing/index.html diff --git a/src/data/railcraft/9.5.0/images/steel_anvil.png b/static/browse/railcraft/steel_anvil/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/steel_anvil.png rename to static/browse/railcraft/steel_anvil/icon.png diff --git a/prerender/browse/railcraft/steel_anvil/index.html b/static/browse/railcraft/steel_anvil/index.html similarity index 100% rename from prerender/browse/railcraft/steel_anvil/index.html rename to static/browse/railcraft/steel_anvil/index.html diff --git a/src/data/railcraft/9.5.0/images/steel_axe.png b/static/browse/railcraft/steel_axe/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/steel_axe.png rename to static/browse/railcraft/steel_axe/icon.png diff --git a/prerender/browse/railcraft/steel_axe/index.html b/static/browse/railcraft/steel_axe/index.html similarity index 100% rename from prerender/browse/railcraft/steel_axe/index.html rename to static/browse/railcraft/steel_axe/index.html diff --git a/src/data/railcraft/9.5.0/images/steel_boots.png b/static/browse/railcraft/steel_boots/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/steel_boots.png rename to static/browse/railcraft/steel_boots/icon.png diff --git a/prerender/browse/railcraft/steel_boots/index.html b/static/browse/railcraft/steel_boots/index.html similarity index 100% rename from prerender/browse/railcraft/steel_boots/index.html rename to static/browse/railcraft/steel_boots/index.html diff --git a/src/data/railcraft/9.5.0/images/steel_bore_head.png b/static/browse/railcraft/steel_bore_head/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/steel_bore_head.png rename to static/browse/railcraft/steel_bore_head/icon.png diff --git a/prerender/browse/railcraft/steel_bore_head/index.html b/static/browse/railcraft/steel_bore_head/index.html similarity index 100% rename from prerender/browse/railcraft/steel_bore_head/index.html rename to static/browse/railcraft/steel_bore_head/index.html diff --git a/src/data/railcraft/9.5.0/images/steel_chestplate.png b/static/browse/railcraft/steel_chestplate/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/steel_chestplate.png rename to static/browse/railcraft/steel_chestplate/icon.png diff --git a/prerender/browse/railcraft/steel_chestplate/index.html b/static/browse/railcraft/steel_chestplate/index.html similarity index 100% rename from prerender/browse/railcraft/steel_chestplate/index.html rename to static/browse/railcraft/steel_chestplate/index.html diff --git a/src/data/railcraft/9.5.0/images/steel_gear.png b/static/browse/railcraft/steel_gear/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/steel_gear.png rename to static/browse/railcraft/steel_gear/icon.png diff --git a/prerender/browse/railcraft/steel_gear/index.html b/static/browse/railcraft/steel_gear/index.html similarity index 100% rename from prerender/browse/railcraft/steel_gear/index.html rename to static/browse/railcraft/steel_gear/index.html diff --git a/src/data/railcraft/9.5.0/images/steel_helmet.png b/static/browse/railcraft/steel_helmet/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/steel_helmet.png rename to static/browse/railcraft/steel_helmet/icon.png diff --git a/prerender/browse/railcraft/steel_helmet/index.html b/static/browse/railcraft/steel_helmet/index.html similarity index 100% rename from prerender/browse/railcraft/steel_helmet/index.html rename to static/browse/railcraft/steel_helmet/index.html diff --git a/src/data/railcraft/9.5.0/images/steel_hoe.png b/static/browse/railcraft/steel_hoe/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/steel_hoe.png rename to static/browse/railcraft/steel_hoe/icon.png diff --git a/prerender/browse/railcraft/steel_hoe/index.html b/static/browse/railcraft/steel_hoe/index.html similarity index 100% rename from prerender/browse/railcraft/steel_hoe/index.html rename to static/browse/railcraft/steel_hoe/index.html diff --git a/src/data/railcraft/9.5.0/images/steel_ingot.png b/static/browse/railcraft/steel_ingot/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/steel_ingot.png rename to static/browse/railcraft/steel_ingot/icon.png diff --git a/prerender/browse/railcraft/steel_ingot/index.html b/static/browse/railcraft/steel_ingot/index.html similarity index 100% rename from prerender/browse/railcraft/steel_ingot/index.html rename to static/browse/railcraft/steel_ingot/index.html diff --git a/src/data/railcraft/9.5.0/images/steel_lantern.png b/static/browse/railcraft/steel_lantern/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/steel_lantern.png rename to static/browse/railcraft/steel_lantern/icon.png diff --git a/prerender/browse/railcraft/steel_lantern/index.html b/static/browse/railcraft/steel_lantern/index.html similarity index 100% rename from prerender/browse/railcraft/steel_lantern/index.html rename to static/browse/railcraft/steel_lantern/index.html diff --git a/src/data/railcraft/9.5.0/images/steel_leggings.png b/static/browse/railcraft/steel_leggings/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/steel_leggings.png rename to static/browse/railcraft/steel_leggings/icon.png diff --git a/prerender/browse/railcraft/steel_leggings/index.html b/static/browse/railcraft/steel_leggings/index.html similarity index 100% rename from prerender/browse/railcraft/steel_leggings/index.html rename to static/browse/railcraft/steel_leggings/index.html diff --git a/src/data/railcraft/9.5.0/images/steel_nugget.png b/static/browse/railcraft/steel_nugget/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/steel_nugget.png rename to static/browse/railcraft/steel_nugget/icon.png diff --git a/prerender/browse/railcraft/steel_nugget/index.html b/static/browse/railcraft/steel_nugget/index.html similarity index 100% rename from prerender/browse/railcraft/steel_nugget/index.html rename to static/browse/railcraft/steel_nugget/index.html diff --git a/src/data/railcraft/9.5.0/images/steel_pickaxe.png b/static/browse/railcraft/steel_pickaxe/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/steel_pickaxe.png rename to static/browse/railcraft/steel_pickaxe/icon.png diff --git a/prerender/browse/railcraft/steel_pickaxe/index.html b/static/browse/railcraft/steel_pickaxe/index.html similarity index 100% rename from prerender/browse/railcraft/steel_pickaxe/index.html rename to static/browse/railcraft/steel_pickaxe/index.html diff --git a/src/data/railcraft/9.5.0/images/steel_plate.png b/static/browse/railcraft/steel_plate/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/steel_plate.png rename to static/browse/railcraft/steel_plate/icon.png diff --git a/prerender/browse/railcraft/steel_plate/index.html b/static/browse/railcraft/steel_plate/index.html similarity index 100% rename from prerender/browse/railcraft/steel_plate/index.html rename to static/browse/railcraft/steel_plate/index.html diff --git a/src/data/railcraft/9.5.0/images/steel_shears.png b/static/browse/railcraft/steel_shears/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/steel_shears.png rename to static/browse/railcraft/steel_shears/icon.png diff --git a/prerender/browse/railcraft/steel_shears/index.html b/static/browse/railcraft/steel_shears/index.html similarity index 100% rename from prerender/browse/railcraft/steel_shears/index.html rename to static/browse/railcraft/steel_shears/index.html diff --git a/src/data/railcraft/9.5.0/images/steel_shovel.png b/static/browse/railcraft/steel_shovel/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/steel_shovel.png rename to static/browse/railcraft/steel_shovel/icon.png diff --git a/prerender/browse/railcraft/steel_shovel/index.html b/static/browse/railcraft/steel_shovel/index.html similarity index 100% rename from prerender/browse/railcraft/steel_shovel/index.html rename to static/browse/railcraft/steel_shovel/index.html diff --git a/src/data/railcraft/9.5.0/images/steel_slab.png b/static/browse/railcraft/steel_slab/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/steel_slab.png rename to static/browse/railcraft/steel_slab/icon.png diff --git a/prerender/browse/railcraft/steel_slab/index.html b/static/browse/railcraft/steel_slab/index.html similarity index 100% rename from prerender/browse/railcraft/steel_slab/index.html rename to static/browse/railcraft/steel_slab/index.html diff --git a/src/data/railcraft/9.5.0/images/steel_stairs.png b/static/browse/railcraft/steel_stairs/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/steel_stairs.png rename to static/browse/railcraft/steel_stairs/icon.png diff --git a/prerender/browse/railcraft/steel_stairs/index.html b/static/browse/railcraft/steel_stairs/index.html similarity index 100% rename from prerender/browse/railcraft/steel_stairs/index.html rename to static/browse/railcraft/steel_stairs/index.html diff --git a/src/data/railcraft/9.5.0/images/steel_sword.png b/static/browse/railcraft/steel_sword/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/steel_sword.png rename to static/browse/railcraft/steel_sword/icon.png diff --git a/prerender/browse/railcraft/steel_sword/index.html b/static/browse/railcraft/steel_sword/index.html similarity index 100% rename from prerender/browse/railcraft/steel_sword/index.html rename to static/browse/railcraft/steel_sword/index.html diff --git a/src/data/railcraft/9.5.0/images/steel_tank_gauge.png b/static/browse/railcraft/steel_tank_gauge/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/steel_tank_gauge.png rename to static/browse/railcraft/steel_tank_gauge/icon.png diff --git a/prerender/browse/railcraft/steel_tank_gauge/index.html b/static/browse/railcraft/steel_tank_gauge/index.html similarity index 100% rename from prerender/browse/railcraft/steel_tank_gauge/index.html rename to static/browse/railcraft/steel_tank_gauge/index.html diff --git a/src/data/railcraft/9.5.0/images/steel_tank_valve.png b/static/browse/railcraft/steel_tank_valve/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/steel_tank_valve.png rename to static/browse/railcraft/steel_tank_valve/icon.png diff --git a/prerender/browse/railcraft/steel_tank_valve/index.html b/static/browse/railcraft/steel_tank_valve/index.html similarity index 100% rename from prerender/browse/railcraft/steel_tank_valve/index.html rename to static/browse/railcraft/steel_tank_valve/index.html diff --git a/src/data/railcraft/9.5.0/images/steel_tank_wall.png b/static/browse/railcraft/steel_tank_wall/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/steel_tank_wall.png rename to static/browse/railcraft/steel_tank_wall/icon.png diff --git a/prerender/browse/railcraft/steel_tank_wall/index.html b/static/browse/railcraft/steel_tank_wall/index.html similarity index 100% rename from prerender/browse/railcraft/steel_tank_wall/index.html rename to static/browse/railcraft/steel_tank_wall/index.html diff --git a/src/data/railcraft/9.5.0/images/stone_brick_wall.png b/static/browse/railcraft/stone_brick_wall/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/stone_brick_wall.png rename to static/browse/railcraft/stone_brick_wall/icon.png diff --git a/prerender/browse/railcraft/stone_brick_wall/index.html b/static/browse/railcraft/stone_brick_wall/index.html similarity index 100% rename from prerender/browse/railcraft/stone_brick_wall/index.html rename to static/browse/railcraft/stone_brick_wall/index.html diff --git a/src/data/railcraft/9.5.0/images/stone_lantern.png b/static/browse/railcraft/stone_lantern/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/stone_lantern.png rename to static/browse/railcraft/stone_lantern/icon.png diff --git a/prerender/browse/railcraft/stone_lantern/index.html b/static/browse/railcraft/stone_lantern/index.html similarity index 100% rename from prerender/browse/railcraft/stone_lantern/index.html rename to static/browse/railcraft/stone_lantern/index.html diff --git a/src/data/railcraft/9.5.0/images/stone_platform.png b/static/browse/railcraft/stone_platform/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/stone_platform.png rename to static/browse/railcraft/stone_platform/icon.png diff --git a/prerender/browse/railcraft/stone_platform/index.html b/static/browse/railcraft/stone_platform/index.html similarity index 100% rename from prerender/browse/railcraft/stone_platform/index.html rename to static/browse/railcraft/stone_platform/index.html diff --git a/src/data/railcraft/9.5.0/images/stone_post.png b/static/browse/railcraft/stone_post/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/stone_post.png rename to static/browse/railcraft/stone_post/icon.png diff --git a/prerender/browse/railcraft/stone_post/index.html b/static/browse/railcraft/stone_post/index.html similarity index 100% rename from prerender/browse/railcraft/stone_post/index.html rename to static/browse/railcraft/stone_post/index.html diff --git a/src/data/railcraft/9.5.0/images/stone_railbed.png b/static/browse/railcraft/stone_railbed/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/stone_railbed.png rename to static/browse/railcraft/stone_railbed/icon.png diff --git a/prerender/browse/railcraft/stone_railbed/index.html b/static/browse/railcraft/stone_railbed/index.html similarity index 100% rename from prerender/browse/railcraft/stone_railbed/index.html rename to static/browse/railcraft/stone_railbed/index.html diff --git a/src/data/railcraft/9.5.0/images/stone_tie.png b/static/browse/railcraft/stone_tie/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/stone_tie.png rename to static/browse/railcraft/stone_tie/icon.png diff --git a/prerender/browse/railcraft/stone_tie/index.html b/static/browse/railcraft/stone_tie/index.html similarity index 100% rename from prerender/browse/railcraft/stone_tie/index.html rename to static/browse/railcraft/stone_tie/index.html diff --git a/src/data/railcraft/9.5.0/images/strengthened_glass.png b/static/browse/railcraft/strengthened_glass/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/strengthened_glass.png rename to static/browse/railcraft/strengthened_glass/icon.png diff --git a/prerender/browse/railcraft/strengthened_glass/index.html b/static/browse/railcraft/strengthened_glass/index.html similarity index 100% rename from prerender/browse/railcraft/strengthened_glass/index.html rename to static/browse/railcraft/strengthened_glass/index.html diff --git a/src/data/railcraft/9.5.0/images/strengthened_glass_10.png b/static/browse/railcraft/strengthened_glass_10/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/strengthened_glass_10.png rename to static/browse/railcraft/strengthened_glass_10/icon.png diff --git a/src/data/railcraft/9.5.0/images/strengthened_glass_11.png b/static/browse/railcraft/strengthened_glass_11/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/strengthened_glass_11.png rename to static/browse/railcraft/strengthened_glass_11/icon.png diff --git a/src/data/railcraft/9.5.0/images/strengthened_glass_12.png b/static/browse/railcraft/strengthened_glass_12/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/strengthened_glass_12.png rename to static/browse/railcraft/strengthened_glass_12/icon.png diff --git a/src/data/railcraft/9.5.0/images/strengthened_glass_13.png b/static/browse/railcraft/strengthened_glass_13/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/strengthened_glass_13.png rename to static/browse/railcraft/strengthened_glass_13/icon.png diff --git a/src/data/railcraft/9.5.0/images/strengthened_glass_14.png b/static/browse/railcraft/strengthened_glass_14/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/strengthened_glass_14.png rename to static/browse/railcraft/strengthened_glass_14/icon.png diff --git a/src/data/railcraft/9.5.0/images/strengthened_glass_15.png b/static/browse/railcraft/strengthened_glass_15/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/strengthened_glass_15.png rename to static/browse/railcraft/strengthened_glass_15/icon.png diff --git a/src/data/railcraft/9.5.0/images/strengthened_glass_16.png b/static/browse/railcraft/strengthened_glass_16/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/strengthened_glass_16.png rename to static/browse/railcraft/strengthened_glass_16/icon.png diff --git a/src/data/railcraft/9.5.0/images/strengthened_glass_2.png b/static/browse/railcraft/strengthened_glass_2/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/strengthened_glass_2.png rename to static/browse/railcraft/strengthened_glass_2/icon.png diff --git a/src/data/railcraft/9.5.0/images/strengthened_glass_3.png b/static/browse/railcraft/strengthened_glass_3/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/strengthened_glass_3.png rename to static/browse/railcraft/strengthened_glass_3/icon.png diff --git a/src/data/railcraft/9.5.0/images/strengthened_glass_4.png b/static/browse/railcraft/strengthened_glass_4/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/strengthened_glass_4.png rename to static/browse/railcraft/strengthened_glass_4/icon.png diff --git a/src/data/railcraft/9.5.0/images/strengthened_glass_5.png b/static/browse/railcraft/strengthened_glass_5/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/strengthened_glass_5.png rename to static/browse/railcraft/strengthened_glass_5/icon.png diff --git a/src/data/railcraft/9.5.0/images/strengthened_glass_6.png b/static/browse/railcraft/strengthened_glass_6/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/strengthened_glass_6.png rename to static/browse/railcraft/strengthened_glass_6/icon.png diff --git a/src/data/railcraft/9.5.0/images/strengthened_glass_7.png b/static/browse/railcraft/strengthened_glass_7/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/strengthened_glass_7.png rename to static/browse/railcraft/strengthened_glass_7/icon.png diff --git a/src/data/railcraft/9.5.0/images/strengthened_glass_8.png b/static/browse/railcraft/strengthened_glass_8/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/strengthened_glass_8.png rename to static/browse/railcraft/strengthened_glass_8/icon.png diff --git a/src/data/railcraft/9.5.0/images/strengthened_glass_9.png b/static/browse/railcraft/strengthened_glass_9/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/strengthened_glass_9.png rename to static/browse/railcraft/strengthened_glass_9/icon.png diff --git a/src/data/railcraft/9.5.0/images/sulfur.png b/static/browse/railcraft/sulfur/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/sulfur.png rename to static/browse/railcraft/sulfur/icon.png diff --git a/prerender/browse/railcraft/sulfur/index.html b/static/browse/railcraft/sulfur/index.html similarity index 100% rename from prerender/browse/railcraft/sulfur/index.html rename to static/browse/railcraft/sulfur/index.html diff --git a/src/data/railcraft/9.5.0/images/sulfur_ore.png b/static/browse/railcraft/sulfur_ore/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/sulfur_ore.png rename to static/browse/railcraft/sulfur_ore/icon.png diff --git a/prerender/browse/railcraft/sulfur_ore/index.html b/static/browse/railcraft/sulfur_ore/index.html similarity index 100% rename from prerender/browse/railcraft/sulfur_ore/index.html rename to static/browse/railcraft/sulfur_ore/index.html diff --git a/src/data/railcraft/9.5.0/images/suspended_track.png b/static/browse/railcraft/suspended_track/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/suspended_track.png rename to static/browse/railcraft/suspended_track/icon.png diff --git a/prerender/browse/railcraft/suspended_track/index.html b/static/browse/railcraft/suspended_track/index.html similarity index 100% rename from prerender/browse/railcraft/suspended_track/index.html rename to static/browse/railcraft/suspended_track/index.html diff --git a/src/data/railcraft/9.5.0/images/switch_lever.png b/static/browse/railcraft/switch_lever/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/switch_lever.png rename to static/browse/railcraft/switch_lever/icon.png diff --git a/prerender/browse/railcraft/switch_lever/index.html b/static/browse/railcraft/switch_lever/index.html similarity index 100% rename from prerender/browse/railcraft/switch_lever/index.html rename to static/browse/railcraft/switch_lever/index.html diff --git a/src/data/railcraft/9.5.0/images/switch_motor.png b/static/browse/railcraft/switch_motor/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/switch_motor.png rename to static/browse/railcraft/switch_motor/icon.png diff --git a/prerender/browse/railcraft/switch_motor/index.html b/static/browse/railcraft/switch_motor/index.html similarity index 100% rename from prerender/browse/railcraft/switch_motor/index.html rename to static/browse/railcraft/switch_motor/index.html diff --git a/src/data/railcraft/9.5.0/images/switch_track.png b/static/browse/railcraft/switch_track/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/switch_track.png rename to static/browse/railcraft/switch_track/icon.png diff --git a/prerender/browse/railcraft/switch_track/index.html b/static/browse/railcraft/switch_track/index.html similarity index 100% rename from prerender/browse/railcraft/switch_track/index.html rename to static/browse/railcraft/switch_track/index.html diff --git a/src/data/railcraft/9.5.0/images/tank_cart.png b/static/browse/railcraft/tank_cart/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/tank_cart.png rename to static/browse/railcraft/tank_cart/icon.png diff --git a/prerender/browse/railcraft/tank_cart/index.html b/static/browse/railcraft/tank_cart/index.html similarity index 100% rename from prerender/browse/railcraft/tank_cart/index.html rename to static/browse/railcraft/tank_cart/index.html diff --git a/src/data/railcraft/9.5.0/images/tin_gear_bushing.png b/static/browse/railcraft/tin_gear_bushing/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/tin_gear_bushing.png rename to static/browse/railcraft/tin_gear_bushing/icon.png diff --git a/prerender/browse/railcraft/tin_gear_bushing/index.html b/static/browse/railcraft/tin_gear_bushing/index.html similarity index 100% rename from prerender/browse/railcraft/tin_gear_bushing/index.html rename to static/browse/railcraft/tin_gear_bushing/index.html diff --git a/src/data/railcraft/9.5.0/images/tin_ingot.png b/static/browse/railcraft/tin_ingot/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/tin_ingot.png rename to static/browse/railcraft/tin_ingot/icon.png diff --git a/prerender/browse/railcraft/tin_ingot/index.html b/static/browse/railcraft/tin_ingot/index.html similarity index 100% rename from prerender/browse/railcraft/tin_ingot/index.html rename to static/browse/railcraft/tin_ingot/index.html diff --git a/src/data/railcraft/9.5.0/images/tin_lantern.png b/static/browse/railcraft/tin_lantern/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/tin_lantern.png rename to static/browse/railcraft/tin_lantern/icon.png diff --git a/prerender/browse/railcraft/tin_lantern/index.html b/static/browse/railcraft/tin_lantern/index.html similarity index 100% rename from prerender/browse/railcraft/tin_lantern/index.html rename to static/browse/railcraft/tin_lantern/index.html diff --git a/src/data/railcraft/9.5.0/images/tin_nugget.png b/static/browse/railcraft/tin_nugget/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/tin_nugget.png rename to static/browse/railcraft/tin_nugget/icon.png diff --git a/prerender/browse/railcraft/tin_nugget/index.html b/static/browse/railcraft/tin_nugget/index.html similarity index 100% rename from prerender/browse/railcraft/tin_nugget/index.html rename to static/browse/railcraft/tin_nugget/index.html diff --git a/src/data/railcraft/9.5.0/images/tin_plate.png b/static/browse/railcraft/tin_plate/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/tin_plate.png rename to static/browse/railcraft/tin_plate/icon.png diff --git a/prerender/browse/railcraft/tin_plate/index.html b/static/browse/railcraft/tin_plate/index.html similarity index 100% rename from prerender/browse/railcraft/tin_plate/index.html rename to static/browse/railcraft/tin_plate/index.html diff --git a/src/data/railcraft/9.5.0/images/tin_slab.png b/static/browse/railcraft/tin_slab/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/tin_slab.png rename to static/browse/railcraft/tin_slab/icon.png diff --git a/prerender/browse/railcraft/tin_slab/index.html b/static/browse/railcraft/tin_slab/index.html similarity index 100% rename from prerender/browse/railcraft/tin_slab/index.html rename to static/browse/railcraft/tin_slab/index.html diff --git a/src/data/railcraft/9.5.0/images/tin_stairs.png b/static/browse/railcraft/tin_stairs/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/tin_stairs.png rename to static/browse/railcraft/tin_stairs/icon.png diff --git a/prerender/browse/railcraft/tin_stairs/index.html b/static/browse/railcraft/tin_stairs/index.html similarity index 100% rename from prerender/browse/railcraft/tin_stairs/index.html rename to static/browse/railcraft/tin_stairs/index.html diff --git a/src/data/railcraft/9.5.0/images/track.png b/static/browse/railcraft/track/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/track.png rename to static/browse/railcraft/track/icon.png diff --git a/prerender/browse/railcraft/track/index.html b/static/browse/railcraft/track/index.html similarity index 100% rename from prerender/browse/railcraft/track/index.html rename to static/browse/railcraft/track/index.html diff --git a/src/data/railcraft/9.5.0/images/track_layer_cart.png b/static/browse/railcraft/track_layer_cart/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/track_layer_cart.png rename to static/browse/railcraft/track_layer_cart/icon.png diff --git a/prerender/browse/railcraft/track_layer_cart/index.html b/static/browse/railcraft/track_layer_cart/index.html similarity index 100% rename from prerender/browse/railcraft/track_layer_cart/index.html rename to static/browse/railcraft/track_layer_cart/index.html diff --git a/src/data/railcraft/9.5.0/images/track_relayer_cart.png b/static/browse/railcraft/track_relayer_cart/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/track_relayer_cart.png rename to static/browse/railcraft/track_relayer_cart/icon.png diff --git a/prerender/browse/railcraft/track_relayer_cart/index.html b/static/browse/railcraft/track_relayer_cart/index.html similarity index 100% rename from prerender/browse/railcraft/track_relayer_cart/index.html rename to static/browse/railcraft/track_relayer_cart/index.html diff --git a/src/data/railcraft/9.5.0/images/track_remover_cart.png b/static/browse/railcraft/track_remover_cart/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/track_remover_cart.png rename to static/browse/railcraft/track_remover_cart/icon.png diff --git a/prerender/browse/railcraft/track_remover_cart/index.html b/static/browse/railcraft/track_remover_cart/index.html similarity index 100% rename from prerender/browse/railcraft/track_remover_cart/index.html rename to static/browse/railcraft/track_remover_cart/index.html diff --git a/src/data/railcraft/9.5.0/images/trackman_s_goggles.png b/static/browse/railcraft/trackman_s_goggles/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/trackman_s_goggles.png rename to static/browse/railcraft/trackman_s_goggles/icon.png diff --git a/prerender/browse/railcraft/trackman_s_goggles/index.html b/static/browse/railcraft/trackman_s_goggles/index.html similarity index 100% rename from prerender/browse/railcraft/trackman_s_goggles/index.html rename to static/browse/railcraft/trackman_s_goggles/index.html diff --git a/src/data/railcraft/9.5.0/images/trade_station.png b/static/browse/railcraft/trade_station/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/trade_station.png rename to static/browse/railcraft/trade_station/icon.png diff --git a/prerender/browse/railcraft/trade_station/index.html b/static/browse/railcraft/trade_station/index.html similarity index 100% rename from prerender/browse/railcraft/trade_station/index.html rename to static/browse/railcraft/trade_station/index.html diff --git a/src/data/railcraft/9.5.0/images/train_dispenser.png b/static/browse/railcraft/train_dispenser/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/train_dispenser.png rename to static/browse/railcraft/train_dispenser/icon.png diff --git a/prerender/browse/railcraft/train_dispenser/index.html b/static/browse/railcraft/train_dispenser/index.html similarity index 100% rename from prerender/browse/railcraft/train_dispenser/index.html rename to static/browse/railcraft/train_dispenser/index.html diff --git a/src/data/railcraft/9.5.0/images/tunnel_bore.png b/static/browse/railcraft/tunnel_bore/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/tunnel_bore.png rename to static/browse/railcraft/tunnel_bore/icon.png diff --git a/prerender/browse/railcraft/tunnel_bore/index.html b/static/browse/railcraft/tunnel_bore/index.html similarity index 100% rename from prerender/browse/railcraft/tunnel_bore/index.html rename to static/browse/railcraft/tunnel_bore/index.html diff --git a/src/data/railcraft/9.5.0/images/turbine_blade.png b/static/browse/railcraft/turbine_blade/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/turbine_blade.png rename to static/browse/railcraft/turbine_blade/icon.png diff --git a/prerender/browse/railcraft/turbine_blade/index.html b/static/browse/railcraft/turbine_blade/index.html similarity index 100% rename from prerender/browse/railcraft/turbine_blade/index.html rename to static/browse/railcraft/turbine_blade/index.html diff --git a/src/data/railcraft/9.5.0/images/turbine_disk.png b/static/browse/railcraft/turbine_disk/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/turbine_disk.png rename to static/browse/railcraft/turbine_disk/icon.png diff --git a/prerender/browse/railcraft/turbine_disk/index.html b/static/browse/railcraft/turbine_disk/index.html similarity index 100% rename from prerender/browse/railcraft/turbine_disk/index.html rename to static/browse/railcraft/turbine_disk/index.html diff --git a/src/data/railcraft/9.5.0/images/turbine_rotor.png b/static/browse/railcraft/turbine_rotor/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/turbine_rotor.png rename to static/browse/railcraft/turbine_rotor/icon.png diff --git a/prerender/browse/railcraft/turbine_rotor/index.html b/static/browse/railcraft/turbine_rotor/index.html similarity index 100% rename from prerender/browse/railcraft/turbine_rotor/index.html rename to static/browse/railcraft/turbine_rotor/index.html diff --git a/src/data/railcraft/9.5.0/images/undercutter_cart.png b/static/browse/railcraft/undercutter_cart/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/undercutter_cart.png rename to static/browse/railcraft/undercutter_cart/icon.png diff --git a/prerender/browse/railcraft/undercutter_cart/index.html b/static/browse/railcraft/undercutter_cart/index.html similarity index 100% rename from prerender/browse/railcraft/undercutter_cart/index.html rename to static/browse/railcraft/undercutter_cart/index.html diff --git a/src/data/railcraft/9.5.0/images/very_damaged_anvil.png b/static/browse/railcraft/very_damaged_anvil/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/very_damaged_anvil.png rename to static/browse/railcraft/very_damaged_anvil/icon.png diff --git a/src/data/railcraft/9.5.0/images/void_chest.png b/static/browse/railcraft/void_chest/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/void_chest.png rename to static/browse/railcraft/void_chest/icon.png diff --git a/prerender/browse/railcraft/void_chest/index.html b/static/browse/railcraft/void_chest/index.html similarity index 100% rename from prerender/browse/railcraft/void_chest/index.html rename to static/browse/railcraft/void_chest/index.html diff --git a/src/data/railcraft/9.5.0/images/water_tank_siding.png b/static/browse/railcraft/water_tank_siding/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/water_tank_siding.png rename to static/browse/railcraft/water_tank_siding/icon.png diff --git a/prerender/browse/railcraft/water_tank_siding/index.html b/static/browse/railcraft/water_tank_siding/index.html similarity index 100% rename from prerender/browse/railcraft/water_tank_siding/index.html rename to static/browse/railcraft/water_tank_siding/index.html diff --git a/src/data/railcraft/9.5.0/images/whistle_track.png b/static/browse/railcraft/whistle_track/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/whistle_track.png rename to static/browse/railcraft/whistle_track/icon.png diff --git a/prerender/browse/railcraft/whistle_track/index.html b/static/browse/railcraft/whistle_track/index.html similarity index 100% rename from prerender/browse/railcraft/whistle_track/index.html rename to static/browse/railcraft/whistle_track/index.html diff --git a/src/data/railcraft/9.5.0/images/whistle_tuner.png b/static/browse/railcraft/whistle_tuner/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/whistle_tuner.png rename to static/browse/railcraft/whistle_tuner/icon.png diff --git a/prerender/browse/railcraft/whistle_tuner/index.html b/static/browse/railcraft/whistle_tuner/index.html similarity index 100% rename from prerender/browse/railcraft/whistle_tuner/index.html rename to static/browse/railcraft/whistle_tuner/index.html diff --git a/src/data/railcraft/9.5.0/images/white_metal_platform.png b/static/browse/railcraft/white_metal_platform/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/white_metal_platform.png rename to static/browse/railcraft/white_metal_platform/icon.png diff --git a/prerender/browse/railcraft/white_metal_platform/index.html b/static/browse/railcraft/white_metal_platform/index.html similarity index 100% rename from prerender/browse/railcraft/white_metal_platform/index.html rename to static/browse/railcraft/white_metal_platform/index.html diff --git a/src/data/railcraft/9.5.0/images/white_metal_post.png b/static/browse/railcraft/white_metal_post/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/white_metal_post.png rename to static/browse/railcraft/white_metal_post/icon.png diff --git a/prerender/browse/railcraft/white_metal_post/index.html b/static/browse/railcraft/white_metal_post/index.html similarity index 100% rename from prerender/browse/railcraft/white_metal_post/index.html rename to static/browse/railcraft/white_metal_post/index.html diff --git a/src/data/railcraft/9.5.0/images/wire_support_frame.png b/static/browse/railcraft/wire_support_frame/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/wire_support_frame.png rename to static/browse/railcraft/wire_support_frame/icon.png diff --git a/prerender/browse/railcraft/wire_support_frame/index.html b/static/browse/railcraft/wire_support_frame/index.html similarity index 100% rename from prerender/browse/railcraft/wire_support_frame/index.html rename to static/browse/railcraft/wire_support_frame/index.html diff --git a/src/data/railcraft/9.5.0/images/wooden_booster_track.png b/static/browse/railcraft/wooden_booster_track/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/wooden_booster_track.png rename to static/browse/railcraft/wooden_booster_track/icon.png diff --git a/prerender/browse/railcraft/wooden_booster_track/index.html b/static/browse/railcraft/wooden_booster_track/index.html similarity index 100% rename from prerender/browse/railcraft/wooden_booster_track/index.html rename to static/browse/railcraft/wooden_booster_track/index.html diff --git a/src/data/railcraft/9.5.0/images/wooden_junction_track.png b/static/browse/railcraft/wooden_junction_track/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/wooden_junction_track.png rename to static/browse/railcraft/wooden_junction_track/icon.png diff --git a/prerender/browse/railcraft/wooden_junction_track/index.html b/static/browse/railcraft/wooden_junction_track/index.html similarity index 100% rename from prerender/browse/railcraft/wooden_junction_track/index.html rename to static/browse/railcraft/wooden_junction_track/index.html diff --git a/src/data/railcraft/9.5.0/images/wooden_platform.png b/static/browse/railcraft/wooden_platform/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/wooden_platform.png rename to static/browse/railcraft/wooden_platform/icon.png diff --git a/prerender/browse/railcraft/wooden_platform/index.html b/static/browse/railcraft/wooden_platform/index.html similarity index 100% rename from prerender/browse/railcraft/wooden_platform/index.html rename to static/browse/railcraft/wooden_platform/index.html diff --git a/src/data/railcraft/9.5.0/images/wooden_post.png b/static/browse/railcraft/wooden_post/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/wooden_post.png rename to static/browse/railcraft/wooden_post/icon.png diff --git a/prerender/browse/railcraft/wooden_post/index.html b/static/browse/railcraft/wooden_post/index.html similarity index 100% rename from prerender/browse/railcraft/wooden_post/index.html rename to static/browse/railcraft/wooden_post/index.html diff --git a/src/data/railcraft/9.5.0/images/wooden_rail.png b/static/browse/railcraft/wooden_rail/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/wooden_rail.png rename to static/browse/railcraft/wooden_rail/icon.png diff --git a/prerender/browse/railcraft/wooden_rail/index.html b/static/browse/railcraft/wooden_rail/index.html similarity index 100% rename from prerender/browse/railcraft/wooden_rail/index.html rename to static/browse/railcraft/wooden_rail/index.html diff --git a/src/data/railcraft/9.5.0/images/wooden_railbed.png b/static/browse/railcraft/wooden_railbed/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/wooden_railbed.png rename to static/browse/railcraft/wooden_railbed/icon.png diff --git a/prerender/browse/railcraft/wooden_railbed/index.html b/static/browse/railcraft/wooden_railbed/index.html similarity index 100% rename from prerender/browse/railcraft/wooden_railbed/index.html rename to static/browse/railcraft/wooden_railbed/index.html diff --git a/src/data/railcraft/9.5.0/images/wooden_switch_track.png b/static/browse/railcraft/wooden_switch_track/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/wooden_switch_track.png rename to static/browse/railcraft/wooden_switch_track/icon.png diff --git a/prerender/browse/railcraft/wooden_switch_track/index.html b/static/browse/railcraft/wooden_switch_track/index.html similarity index 100% rename from prerender/browse/railcraft/wooden_switch_track/index.html rename to static/browse/railcraft/wooden_switch_track/index.html diff --git a/src/data/railcraft/9.5.0/images/wooden_tie.png b/static/browse/railcraft/wooden_tie/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/wooden_tie.png rename to static/browse/railcraft/wooden_tie/icon.png diff --git a/prerender/browse/railcraft/wooden_tie/index.html b/static/browse/railcraft/wooden_tie/index.html similarity index 100% rename from prerender/browse/railcraft/wooden_tie/index.html rename to static/browse/railcraft/wooden_tie/index.html diff --git a/src/data/railcraft/9.5.0/images/wooden_tnt_cart.png b/static/browse/railcraft/wooden_tnt_cart/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/wooden_tnt_cart.png rename to static/browse/railcraft/wooden_tnt_cart/icon.png diff --git a/prerender/browse/railcraft/wooden_tnt_cart/index.html b/static/browse/railcraft/wooden_tnt_cart/index.html similarity index 100% rename from prerender/browse/railcraft/wooden_tnt_cart/index.html rename to static/browse/railcraft/wooden_tnt_cart/index.html diff --git a/src/data/railcraft/9.5.0/images/wooden_track.png b/static/browse/railcraft/wooden_track/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/wooden_track.png rename to static/browse/railcraft/wooden_track/icon.png diff --git a/prerender/browse/railcraft/wooden_track/index.html b/static/browse/railcraft/wooden_track/index.html similarity index 100% rename from prerender/browse/railcraft/wooden_track/index.html rename to static/browse/railcraft/wooden_track/index.html diff --git a/src/data/railcraft/9.5.0/images/wooden_wye_track.png b/static/browse/railcraft/wooden_wye_track/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/wooden_wye_track.png rename to static/browse/railcraft/wooden_wye_track/icon.png diff --git a/prerender/browse/railcraft/wooden_wye_track/index.html b/static/browse/railcraft/wooden_wye_track/index.html similarity index 100% rename from prerender/browse/railcraft/wooden_wye_track/index.html rename to static/browse/railcraft/wooden_wye_track/index.html diff --git a/src/data/railcraft/9.5.0/images/work_cart.png b/static/browse/railcraft/work_cart/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/work_cart.png rename to static/browse/railcraft/work_cart/icon.png diff --git a/prerender/browse/railcraft/work_cart/index.html b/static/browse/railcraft/work_cart/index.html similarity index 100% rename from prerender/browse/railcraft/work_cart/index.html rename to static/browse/railcraft/work_cart/index.html diff --git a/src/data/railcraft/9.5.0/images/world_anchor.png b/static/browse/railcraft/world_anchor/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/world_anchor.png rename to static/browse/railcraft/world_anchor/icon.png diff --git a/prerender/browse/railcraft/world_anchor/index.html b/static/browse/railcraft/world_anchor/index.html similarity index 100% rename from prerender/browse/railcraft/world_anchor/index.html rename to static/browse/railcraft/world_anchor/index.html diff --git a/src/data/railcraft/9.5.0/images/wye_track.png b/static/browse/railcraft/wye_track/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/wye_track.png rename to static/browse/railcraft/wye_track/icon.png diff --git a/prerender/browse/railcraft/wye_track/index.html b/static/browse/railcraft/wye_track/index.html similarity index 100% rename from prerender/browse/railcraft/wye_track/index.html rename to static/browse/railcraft/wye_track/index.html diff --git a/src/data/railcraft/9.5.0/images/yellow_metal_platform.png b/static/browse/railcraft/yellow_metal_platform/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/yellow_metal_platform.png rename to static/browse/railcraft/yellow_metal_platform/icon.png diff --git a/prerender/browse/railcraft/yellow_metal_platform/index.html b/static/browse/railcraft/yellow_metal_platform/index.html similarity index 100% rename from prerender/browse/railcraft/yellow_metal_platform/index.html rename to static/browse/railcraft/yellow_metal_platform/index.html diff --git a/src/data/railcraft/9.5.0/images/yellow_metal_post.png b/static/browse/railcraft/yellow_metal_post/icon.png similarity index 100% rename from src/data/railcraft/9.5.0/images/yellow_metal_post.png rename to static/browse/railcraft/yellow_metal_post/icon.png diff --git a/prerender/browse/railcraft/yellow_metal_post/index.html b/static/browse/railcraft/yellow_metal_post/index.html similarity index 100% rename from prerender/browse/railcraft/yellow_metal_post/index.html rename to static/browse/railcraft/yellow_metal_post/index.html diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/1000mb_blazing_pyrotheum.png b/static/browse/thermal_expansion/1000mb_blazing_pyrotheum/icon.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/1000mb_blazing_pyrotheum.png rename to static/browse/thermal_expansion/1000mb_blazing_pyrotheum/icon.png diff --git a/prerender/browse/thermal_expansion/1000mb_blazing_pyrotheum/index.html b/static/browse/thermal_expansion/1000mb_blazing_pyrotheum/index.html similarity index 100% rename from prerender/browse/thermal_expansion/1000mb_blazing_pyrotheum/index.html rename to static/browse/thermal_expansion/1000mb_blazing_pyrotheum/index.html diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/1000mb_destabilized_redstone.png b/static/browse/thermal_expansion/1000mb_destabilized_redstone/icon.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/1000mb_destabilized_redstone.png rename to static/browse/thermal_expansion/1000mb_destabilized_redstone/icon.png diff --git a/prerender/browse/thermal_expansion/1000mb_destabilized_redstone/index.html b/static/browse/thermal_expansion/1000mb_destabilized_redstone/index.html similarity index 100% rename from prerender/browse/thermal_expansion/1000mb_destabilized_redstone/index.html rename to static/browse/thermal_expansion/1000mb_destabilized_redstone/index.html diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/1000mb_energized_glowstone.png b/static/browse/thermal_expansion/1000mb_energized_glowstone/icon.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/1000mb_energized_glowstone.png rename to static/browse/thermal_expansion/1000mb_energized_glowstone/icon.png diff --git a/prerender/browse/thermal_expansion/1000mb_energized_glowstone/index.html b/static/browse/thermal_expansion/1000mb_energized_glowstone/index.html similarity index 100% rename from prerender/browse/thermal_expansion/1000mb_energized_glowstone/index.html rename to static/browse/thermal_expansion/1000mb_energized_glowstone/index.html diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/1000mb_gelid_cryotheum.png b/static/browse/thermal_expansion/1000mb_gelid_cryotheum/icon.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/1000mb_gelid_cryotheum.png rename to static/browse/thermal_expansion/1000mb_gelid_cryotheum/icon.png diff --git a/prerender/browse/thermal_expansion/1000mb_gelid_cryotheum/index.html b/static/browse/thermal_expansion/1000mb_gelid_cryotheum/index.html similarity index 100% rename from prerender/browse/thermal_expansion/1000mb_gelid_cryotheum/index.html rename to static/browse/thermal_expansion/1000mb_gelid_cryotheum/index.html diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/1000mb_liquifacted_coal.png b/static/browse/thermal_expansion/1000mb_liquifacted_coal/icon.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/1000mb_liquifacted_coal.png rename to static/browse/thermal_expansion/1000mb_liquifacted_coal/icon.png diff --git a/prerender/browse/thermal_expansion/1000mb_liquifacted_coal/index.html b/static/browse/thermal_expansion/1000mb_liquifacted_coal/index.html similarity index 100% rename from prerender/browse/thermal_expansion/1000mb_liquifacted_coal/index.html rename to static/browse/thermal_expansion/1000mb_liquifacted_coal/index.html diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/1000mb_primal_mana.png b/static/browse/thermal_expansion/1000mb_primal_mana/icon.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/1000mb_primal_mana.png rename to static/browse/thermal_expansion/1000mb_primal_mana/icon.png diff --git a/prerender/browse/thermal_expansion/1000mb_primal_mana/index.html b/static/browse/thermal_expansion/1000mb_primal_mana/index.html similarity index 100% rename from prerender/browse/thermal_expansion/1000mb_primal_mana/index.html rename to static/browse/thermal_expansion/1000mb_primal_mana/index.html diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/1000mb_resonant_ender.png b/static/browse/thermal_expansion/1000mb_resonant_ender/icon.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/1000mb_resonant_ender.png rename to static/browse/thermal_expansion/1000mb_resonant_ender/icon.png diff --git a/prerender/browse/thermal_expansion/1000mb_resonant_ender/index.html b/static/browse/thermal_expansion/1000mb_resonant_ender/index.html similarity index 100% rename from prerender/browse/thermal_expansion/1000mb_resonant_ender/index.html rename to static/browse/thermal_expansion/1000mb_resonant_ender/index.html diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/500mb_blazing_pyrotheum.png b/static/browse/thermal_expansion/500mb_blazing_pyrotheum/icon.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/500mb_blazing_pyrotheum.png rename to static/browse/thermal_expansion/500mb_blazing_pyrotheum/icon.png diff --git a/prerender/browse/thermal_expansion/500mb_blazing_pyrotheum/index.html b/static/browse/thermal_expansion/500mb_blazing_pyrotheum/index.html similarity index 100% rename from prerender/browse/thermal_expansion/500mb_blazing_pyrotheum/index.html rename to static/browse/thermal_expansion/500mb_blazing_pyrotheum/index.html diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/500mb_destabilized_redstone.png b/static/browse/thermal_expansion/500mb_destabilized_redstone/icon.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/500mb_destabilized_redstone.png rename to static/browse/thermal_expansion/500mb_destabilized_redstone/icon.png diff --git a/prerender/browse/thermal_expansion/500mb_destabilized_redstone/index.html b/static/browse/thermal_expansion/500mb_destabilized_redstone/index.html similarity index 100% rename from prerender/browse/thermal_expansion/500mb_destabilized_redstone/index.html rename to static/browse/thermal_expansion/500mb_destabilized_redstone/index.html diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/500mb_gelid_cryotheum.png b/static/browse/thermal_expansion/500mb_gelid_cryotheum/icon.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/500mb_gelid_cryotheum.png rename to static/browse/thermal_expansion/500mb_gelid_cryotheum/icon.png diff --git a/prerender/browse/thermal_expansion/500mb_gelid_cryotheum/index.html b/static/browse/thermal_expansion/500mb_gelid_cryotheum/index.html similarity index 100% rename from prerender/browse/thermal_expansion/500mb_gelid_cryotheum/index.html rename to static/browse/thermal_expansion/500mb_gelid_cryotheum/index.html diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/500mb_liquifacted_coal.png b/static/browse/thermal_expansion/500mb_liquifacted_coal/icon.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/500mb_liquifacted_coal.png rename to static/browse/thermal_expansion/500mb_liquifacted_coal/icon.png diff --git a/prerender/browse/thermal_expansion/500mb_liquifacted_coal/index.html b/static/browse/thermal_expansion/500mb_liquifacted_coal/index.html similarity index 100% rename from prerender/browse/thermal_expansion/500mb_liquifacted_coal/index.html rename to static/browse/thermal_expansion/500mb_liquifacted_coal/index.html diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/aqueous_accumulator.png b/static/browse/thermal_expansion/aqueous_accumulator/icon.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/aqueous_accumulator.png rename to static/browse/thermal_expansion/aqueous_accumulator/icon.png diff --git a/prerender/browse/thermal_expansion/aqueous_accumulator/index.html b/static/browse/thermal_expansion/aqueous_accumulator/index.html similarity index 100% rename from prerender/browse/thermal_expansion/aqueous_accumulator/index.html rename to static/browse/thermal_expansion/aqueous_accumulator/index.html diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/aqueous_accumulator_hardened.png b/static/browse/thermal_expansion/aqueous_accumulator_hardened/icon.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/aqueous_accumulator_hardened.png rename to static/browse/thermal_expansion/aqueous_accumulator_hardened/icon.png diff --git a/prerender/browse/thermal_expansion/aqueous_accumulator_hardened/index.html b/static/browse/thermal_expansion/aqueous_accumulator_hardened/index.html similarity index 100% rename from prerender/browse/thermal_expansion/aqueous_accumulator_hardened/index.html rename to static/browse/thermal_expansion/aqueous_accumulator_hardened/index.html diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/aqueous_accumulator_reinforced.png b/static/browse/thermal_expansion/aqueous_accumulator_reinforced/icon.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/aqueous_accumulator_reinforced.png rename to static/browse/thermal_expansion/aqueous_accumulator_reinforced/icon.png diff --git a/prerender/browse/thermal_expansion/aqueous_accumulator_reinforced/index.html b/static/browse/thermal_expansion/aqueous_accumulator_reinforced/index.html similarity index 100% rename from prerender/browse/thermal_expansion/aqueous_accumulator_reinforced/index.html rename to static/browse/thermal_expansion/aqueous_accumulator_reinforced/index.html diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/aqueous_accumulator_resonant.png b/static/browse/thermal_expansion/aqueous_accumulator_resonant/icon.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/aqueous_accumulator_resonant.png rename to static/browse/thermal_expansion/aqueous_accumulator_resonant/icon.png diff --git a/prerender/browse/thermal_expansion/aqueous_accumulator_resonant/index.html b/static/browse/thermal_expansion/aqueous_accumulator_resonant/index.html similarity index 100% rename from prerender/browse/thermal_expansion/aqueous_accumulator_resonant/index.html rename to static/browse/thermal_expansion/aqueous_accumulator_resonant/index.html diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/augment_cryocoil_flux_amplifier.png b/static/browse/thermal_expansion/augment_cryocoil_flux_amplifier/icon.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/augment_cryocoil_flux_amplifier.png rename to static/browse/thermal_expansion/augment_cryocoil_flux_amplifier/icon.png diff --git a/prerender/browse/thermal_expansion/augment_cryocoil_flux_amplifier/index.html b/static/browse/thermal_expansion/augment_cryocoil_flux_amplifier/index.html similarity index 100% rename from prerender/browse/thermal_expansion/augment_cryocoil_flux_amplifier/index.html rename to static/browse/thermal_expansion/augment_cryocoil_flux_amplifier/index.html diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/augment_cryocoil_regulator.png b/static/browse/thermal_expansion/augment_cryocoil_regulator/icon.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/augment_cryocoil_regulator.png rename to static/browse/thermal_expansion/augment_cryocoil_regulator/icon.png diff --git a/prerender/browse/thermal_expansion/augment_cryocoil_regulator/index.html b/static/browse/thermal_expansion/augment_cryocoil_regulator/index.html similarity index 100% rename from prerender/browse/thermal_expansion/augment_cryocoil_regulator/index.html rename to static/browse/thermal_expansion/augment_cryocoil_regulator/index.html diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/augment_flux_linkage_optimization.png b/static/browse/thermal_expansion/augment_flux_linkage_optimization/icon.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/augment_flux_linkage_optimization.png rename to static/browse/thermal_expansion/augment_flux_linkage_optimization/icon.png diff --git a/prerender/browse/thermal_expansion/augment_flux_linkage_optimization/index.html b/static/browse/thermal_expansion/augment_flux_linkage_optimization/index.html similarity index 100% rename from prerender/browse/thermal_expansion/augment_flux_linkage_optimization/index.html rename to static/browse/thermal_expansion/augment_flux_linkage_optimization/index.html diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/augment_flux_modulation_booster.png b/static/browse/thermal_expansion/augment_flux_modulation_booster/icon.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/augment_flux_modulation_booster.png rename to static/browse/thermal_expansion/augment_flux_modulation_booster/icon.png diff --git a/prerender/browse/thermal_expansion/augment_flux_modulation_booster/index.html b/static/browse/thermal_expansion/augment_flux_modulation_booster/index.html similarity index 100% rename from prerender/browse/thermal_expansion/augment_flux_modulation_booster/index.html rename to static/browse/thermal_expansion/augment_flux_modulation_booster/index.html diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/augment_gyroservo_feedback.png b/static/browse/thermal_expansion/augment_gyroservo_feedback/icon.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/augment_gyroservo_feedback.png rename to static/browse/thermal_expansion/augment_gyroservo_feedback/icon.png diff --git a/prerender/browse/thermal_expansion/augment_gyroservo_feedback/index.html b/static/browse/thermal_expansion/augment_gyroservo_feedback/index.html similarity index 100% rename from prerender/browse/thermal_expansion/augment_gyroservo_feedback/index.html rename to static/browse/thermal_expansion/augment_gyroservo_feedback/index.html diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/augment_integrated_modular_framework.png b/static/browse/thermal_expansion/augment_integrated_modular_framework/icon.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/augment_integrated_modular_framework.png rename to static/browse/thermal_expansion/augment_integrated_modular_framework/icon.png diff --git a/prerender/browse/thermal_expansion/augment_integrated_modular_framework/index.html b/static/browse/thermal_expansion/augment_integrated_modular_framework/index.html similarity index 100% rename from prerender/browse/thermal_expansion/augment_integrated_modular_framework/index.html rename to static/browse/thermal_expansion/augment_integrated_modular_framework/index.html diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/augment_integrated_redstone_circuit.png b/static/browse/thermal_expansion/augment_integrated_redstone_circuit/icon.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/augment_integrated_redstone_circuit.png rename to static/browse/thermal_expansion/augment_integrated_redstone_circuit/icon.png diff --git a/prerender/browse/thermal_expansion/augment_integrated_redstone_circuit/index.html b/static/browse/thermal_expansion/augment_integrated_redstone_circuit/index.html similarity index 100% rename from prerender/browse/thermal_expansion/augment_integrated_redstone_circuit/index.html rename to static/browse/thermal_expansion/augment_integrated_redstone_circuit/index.html diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/augment_integrated_servo_mechanism.png b/static/browse/thermal_expansion/augment_integrated_servo_mechanism/icon.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/augment_integrated_servo_mechanism.png rename to static/browse/thermal_expansion/augment_integrated_servo_mechanism/icon.png diff --git a/prerender/browse/thermal_expansion/augment_integrated_servo_mechanism/index.html b/static/browse/thermal_expansion/augment_integrated_servo_mechanism/index.html similarity index 100% rename from prerender/browse/thermal_expansion/augment_integrated_servo_mechanism/index.html rename to static/browse/thermal_expansion/augment_integrated_servo_mechanism/index.html diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/augment_overclocked_modular_gearbox.png b/static/browse/thermal_expansion/augment_overclocked_modular_gearbox/icon.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/augment_overclocked_modular_gearbox.png rename to static/browse/thermal_expansion/augment_overclocked_modular_gearbox/icon.png diff --git a/prerender/browse/thermal_expansion/augment_overclocked_modular_gearbox/index.html b/static/browse/thermal_expansion/augment_overclocked_modular_gearbox/index.html similarity index 100% rename from prerender/browse/thermal_expansion/augment_overclocked_modular_gearbox/index.html rename to static/browse/thermal_expansion/augment_overclocked_modular_gearbox/index.html diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/augment_secondary_gearbox.png b/static/browse/thermal_expansion/augment_secondary_gearbox/icon.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/augment_secondary_gearbox.png rename to static/browse/thermal_expansion/augment_secondary_gearbox/icon.png diff --git a/prerender/browse/thermal_expansion/augment_secondary_gearbox/index.html b/static/browse/thermal_expansion/augment_secondary_gearbox/index.html similarity index 100% rename from prerender/browse/thermal_expansion/augment_secondary_gearbox/index.html rename to static/browse/thermal_expansion/augment_secondary_gearbox/index.html diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/augment_secondary_reception_coil.png b/static/browse/thermal_expansion/augment_secondary_reception_coil/icon.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/augment_secondary_reception_coil.png rename to static/browse/thermal_expansion/augment_secondary_reception_coil/icon.png diff --git a/prerender/browse/thermal_expansion/augment_secondary_reception_coil/index.html b/static/browse/thermal_expansion/augment_secondary_reception_coil/index.html similarity index 100% rename from prerender/browse/thermal_expansion/augment_secondary_reception_coil/index.html rename to static/browse/thermal_expansion/augment_secondary_reception_coil/index.html diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/augment_secondary_sieve.png b/static/browse/thermal_expansion/augment_secondary_sieve/icon.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/augment_secondary_sieve.png rename to static/browse/thermal_expansion/augment_secondary_sieve/icon.png diff --git a/prerender/browse/thermal_expansion/augment_secondary_sieve/index.html b/static/browse/thermal_expansion/augment_secondary_sieve/index.html similarity index 100% rename from prerender/browse/thermal_expansion/augment_secondary_sieve/index.html rename to static/browse/thermal_expansion/augment_secondary_sieve/index.html diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/augment_secondary_transmission_coil.png b/static/browse/thermal_expansion/augment_secondary_transmission_coil/icon.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/augment_secondary_transmission_coil.png rename to static/browse/thermal_expansion/augment_secondary_transmission_coil/icon.png diff --git a/prerender/browse/thermal_expansion/augment_secondary_transmission_coil/index.html b/static/browse/thermal_expansion/augment_secondary_transmission_coil/index.html similarity index 100% rename from prerender/browse/thermal_expansion/augment_secondary_transmission_coil/index.html rename to static/browse/thermal_expansion/augment_secondary_transmission_coil/index.html diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/augment_space_time_flux_unifier.png b/static/browse/thermal_expansion/augment_space_time_flux_unifier/icon.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/augment_space_time_flux_unifier.png rename to static/browse/thermal_expansion/augment_space_time_flux_unifier/icon.png diff --git a/prerender/browse/thermal_expansion/augment_space_time_flux_unifier/index.html b/static/browse/thermal_expansion/augment_space_time_flux_unifier/index.html similarity index 100% rename from prerender/browse/thermal_expansion/augment_space_time_flux_unifier/index.html rename to static/browse/thermal_expansion/augment_space_time_flux_unifier/index.html diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/augment_stabilized_frame.png b/static/browse/thermal_expansion/augment_stabilized_frame/icon.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/augment_stabilized_frame.png rename to static/browse/thermal_expansion/augment_stabilized_frame/icon.png diff --git a/prerender/browse/thermal_expansion/augment_stabilized_frame/index.html b/static/browse/thermal_expansion/augment_stabilized_frame/index.html similarity index 100% rename from prerender/browse/thermal_expansion/augment_stabilized_frame/index.html rename to static/browse/thermal_expansion/augment_stabilized_frame/index.html diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/augment_transmission_coil_ducting.png b/static/browse/thermal_expansion/augment_transmission_coil_ducting/icon.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/augment_transmission_coil_ducting.png rename to static/browse/thermal_expansion/augment_transmission_coil_ducting/icon.png diff --git a/prerender/browse/thermal_expansion/augment_transmission_coil_ducting/index.html b/static/browse/thermal_expansion/augment_transmission_coil_ducting/index.html similarity index 100% rename from prerender/browse/thermal_expansion/augment_transmission_coil_ducting/index.html rename to static/browse/thermal_expansion/augment_transmission_coil_ducting/index.html diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/autonomous_activator.png b/static/browse/thermal_expansion/autonomous_activator/icon.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/autonomous_activator.png rename to static/browse/thermal_expansion/autonomous_activator/icon.png diff --git a/prerender/browse/thermal_expansion/autonomous_activator/index.html b/static/browse/thermal_expansion/autonomous_activator/index.html similarity index 100% rename from prerender/browse/thermal_expansion/autonomous_activator/index.html rename to static/browse/thermal_expansion/autonomous_activator/index.html diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/basic_cache.png b/static/browse/thermal_expansion/basic_cache/icon.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/basic_cache.png rename to static/browse/thermal_expansion/basic_cache/icon.png diff --git a/prerender/browse/thermal_expansion/basic_cache/index.html b/static/browse/thermal_expansion/basic_cache/index.html similarity index 100% rename from prerender/browse/thermal_expansion/basic_cache/index.html rename to static/browse/thermal_expansion/basic_cache/index.html diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/black_rockwool.png b/static/browse/thermal_expansion/black_rockwool/icon.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/black_rockwool.png rename to static/browse/thermal_expansion/black_rockwool/icon.png diff --git a/prerender/browse/thermal_expansion/black_rockwool/index.html b/static/browse/thermal_expansion/black_rockwool/index.html similarity index 100% rename from prerender/browse/thermal_expansion/black_rockwool/index.html rename to static/browse/thermal_expansion/black_rockwool/index.html diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/blazing_pyrotheum_bucket.png b/static/browse/thermal_expansion/blazing_pyrotheum_bucket/icon.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/blazing_pyrotheum_bucket.png rename to static/browse/thermal_expansion/blazing_pyrotheum_bucket/icon.png diff --git a/prerender/browse/thermal_expansion/blazing_pyrotheum_bucket/index.html b/static/browse/thermal_expansion/blazing_pyrotheum_bucket/index.html similarity index 100% rename from prerender/browse/thermal_expansion/blazing_pyrotheum_bucket/index.html rename to static/browse/thermal_expansion/blazing_pyrotheum_bucket/index.html diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/blizz_powder.png b/static/browse/thermal_expansion/blizz_powder/icon.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/blizz_powder.png rename to static/browse/thermal_expansion/blizz_powder/icon.png diff --git a/prerender/browse/thermal_expansion/blizz_powder/index.html b/static/browse/thermal_expansion/blizz_powder/index.html similarity index 100% rename from prerender/browse/thermal_expansion/blizz_powder/index.html rename to static/browse/thermal_expansion/blizz_powder/index.html diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/blizz_rod.png b/static/browse/thermal_expansion/blizz_rod/icon.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/blizz_rod.png rename to static/browse/thermal_expansion/blizz_rod/icon.png diff --git a/prerender/browse/thermal_expansion/blizz_rod/index.html b/static/browse/thermal_expansion/blizz_rod/index.html similarity index 100% rename from prerender/browse/thermal_expansion/blizz_rod/index.html rename to static/browse/thermal_expansion/blizz_rod/index.html diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/blue_rockwool.png b/static/browse/thermal_expansion/blue_rockwool/icon.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/blue_rockwool.png rename to static/browse/thermal_expansion/blue_rockwool/icon.png diff --git a/prerender/browse/thermal_expansion/blue_rockwool/index.html b/static/browse/thermal_expansion/blue_rockwool/index.html similarity index 100% rename from prerender/browse/thermal_expansion/blue_rockwool/index.html rename to static/browse/thermal_expansion/blue_rockwool/index.html diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/brown_rockwool.png b/static/browse/thermal_expansion/brown_rockwool/icon.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/brown_rockwool.png rename to static/browse/thermal_expansion/brown_rockwool/icon.png diff --git a/prerender/browse/thermal_expansion/brown_rockwool/index.html b/static/browse/thermal_expansion/brown_rockwool/index.html similarity index 100% rename from prerender/browse/thermal_expansion/brown_rockwool/index.html rename to static/browse/thermal_expansion/brown_rockwool/index.html diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/cinnabar.png b/static/browse/thermal_expansion/cinnabar/icon.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/cinnabar.png rename to static/browse/thermal_expansion/cinnabar/icon.png diff --git a/prerender/browse/thermal_expansion/cinnabar/index.html b/static/browse/thermal_expansion/cinnabar/index.html similarity index 100% rename from prerender/browse/thermal_expansion/cinnabar/index.html rename to static/browse/thermal_expansion/cinnabar/index.html diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/compressed_sawdust.png b/static/browse/thermal_expansion/compressed_sawdust/icon.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/compressed_sawdust.png rename to static/browse/thermal_expansion/compressed_sawdust/icon.png diff --git a/prerender/browse/thermal_expansion/compressed_sawdust/index.html b/static/browse/thermal_expansion/compressed_sawdust/index.html similarity index 100% rename from prerender/browse/thermal_expansion/compressed_sawdust/index.html rename to static/browse/thermal_expansion/compressed_sawdust/index.html diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/compression_dynamo.png b/static/browse/thermal_expansion/compression_dynamo/icon.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/compression_dynamo.png rename to static/browse/thermal_expansion/compression_dynamo/icon.png diff --git a/prerender/browse/thermal_expansion/compression_dynamo/index.html b/static/browse/thermal_expansion/compression_dynamo/index.html similarity index 100% rename from prerender/browse/thermal_expansion/compression_dynamo/index.html rename to static/browse/thermal_expansion/compression_dynamo/index.html diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/copper_block.png b/static/browse/thermal_expansion/copper_block/icon.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/copper_block.png rename to static/browse/thermal_expansion/copper_block/icon.png diff --git a/prerender/browse/thermal_expansion/copper_block/index.html b/static/browse/thermal_expansion/copper_block/index.html similarity index 100% rename from prerender/browse/thermal_expansion/copper_block/index.html rename to static/browse/thermal_expansion/copper_block/index.html diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/copper_gear.png b/static/browse/thermal_expansion/copper_gear/icon.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/copper_gear.png rename to static/browse/thermal_expansion/copper_gear/icon.png diff --git a/prerender/browse/thermal_expansion/copper_gear/index.html b/static/browse/thermal_expansion/copper_gear/index.html similarity index 100% rename from prerender/browse/thermal_expansion/copper_gear/index.html rename to static/browse/thermal_expansion/copper_gear/index.html diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/copper_ingot.png b/static/browse/thermal_expansion/copper_ingot/icon.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/copper_ingot.png rename to static/browse/thermal_expansion/copper_ingot/icon.png diff --git a/prerender/browse/thermal_expansion/copper_ingot/index.html b/static/browse/thermal_expansion/copper_ingot/index.html similarity index 100% rename from prerender/browse/thermal_expansion/copper_ingot/index.html rename to static/browse/thermal_expansion/copper_ingot/index.html diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/copper_nugget.png b/static/browse/thermal_expansion/copper_nugget/icon.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/copper_nugget.png rename to static/browse/thermal_expansion/copper_nugget/icon.png diff --git a/prerender/browse/thermal_expansion/copper_nugget/index.html b/static/browse/thermal_expansion/copper_nugget/index.html similarity index 100% rename from prerender/browse/thermal_expansion/copper_nugget/index.html rename to static/browse/thermal_expansion/copper_nugget/index.html diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/copper_ore.png b/static/browse/thermal_expansion/copper_ore/icon.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/copper_ore.png rename to static/browse/thermal_expansion/copper_ore/icon.png diff --git a/prerender/browse/thermal_expansion/copper_ore/index.html b/static/browse/thermal_expansion/copper_ore/index.html similarity index 100% rename from prerender/browse/thermal_expansion/copper_ore/index.html rename to static/browse/thermal_expansion/copper_ore/index.html diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/crescent_hammer.png b/static/browse/thermal_expansion/crescent_hammer/icon.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/crescent_hammer.png rename to static/browse/thermal_expansion/crescent_hammer/icon.png diff --git a/prerender/browse/thermal_expansion/crescent_hammer/index.html b/static/browse/thermal_expansion/crescent_hammer/index.html similarity index 100% rename from prerender/browse/thermal_expansion/crescent_hammer/index.html rename to static/browse/thermal_expansion/crescent_hammer/index.html diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/cryotheum_dust.png b/static/browse/thermal_expansion/cryotheum_dust/icon.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/cryotheum_dust.png rename to static/browse/thermal_expansion/cryotheum_dust/icon.png diff --git a/prerender/browse/thermal_expansion/cryotheum_dust/index.html b/static/browse/thermal_expansion/cryotheum_dust/index.html similarity index 100% rename from prerender/browse/thermal_expansion/cryotheum_dust/index.html rename to static/browse/thermal_expansion/cryotheum_dust/index.html diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/cyan_rockwool.png b/static/browse/thermal_expansion/cyan_rockwool/icon.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/cyan_rockwool.png rename to static/browse/thermal_expansion/cyan_rockwool/icon.png diff --git a/prerender/browse/thermal_expansion/cyan_rockwool/index.html b/static/browse/thermal_expansion/cyan_rockwool/index.html similarity index 100% rename from prerender/browse/thermal_expansion/cyan_rockwool/index.html rename to static/browse/thermal_expansion/cyan_rockwool/index.html diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/cyclic_assembler.png b/static/browse/thermal_expansion/cyclic_assembler/icon.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/cyclic_assembler.png rename to static/browse/thermal_expansion/cyclic_assembler/icon.png diff --git a/prerender/browse/thermal_expansion/cyclic_assembler/index.html b/static/browse/thermal_expansion/cyclic_assembler/index.html similarity index 100% rename from prerender/browse/thermal_expansion/cyclic_assembler/index.html rename to static/browse/thermal_expansion/cyclic_assembler/index.html diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/cyclic_assembler_hardened.png b/static/browse/thermal_expansion/cyclic_assembler_hardened/icon.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/cyclic_assembler_hardened.png rename to static/browse/thermal_expansion/cyclic_assembler_hardened/icon.png diff --git a/prerender/browse/thermal_expansion/cyclic_assembler_hardened/index.html b/static/browse/thermal_expansion/cyclic_assembler_hardened/index.html similarity index 100% rename from prerender/browse/thermal_expansion/cyclic_assembler_hardened/index.html rename to static/browse/thermal_expansion/cyclic_assembler_hardened/index.html diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/cyclic_assembler_reinforced.png b/static/browse/thermal_expansion/cyclic_assembler_reinforced/icon.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/cyclic_assembler_reinforced.png rename to static/browse/thermal_expansion/cyclic_assembler_reinforced/icon.png diff --git a/prerender/browse/thermal_expansion/cyclic_assembler_reinforced/index.html b/static/browse/thermal_expansion/cyclic_assembler_reinforced/index.html similarity index 100% rename from prerender/browse/thermal_expansion/cyclic_assembler_reinforced/index.html rename to static/browse/thermal_expansion/cyclic_assembler_reinforced/index.html diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/cyclic_assembler_resonant.png b/static/browse/thermal_expansion/cyclic_assembler_resonant/icon.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/cyclic_assembler_resonant.png rename to static/browse/thermal_expansion/cyclic_assembler_resonant/icon.png diff --git a/prerender/browse/thermal_expansion/cyclic_assembler_resonant/index.html b/static/browse/thermal_expansion/cyclic_assembler_resonant/index.html similarity index 100% rename from prerender/browse/thermal_expansion/cyclic_assembler_resonant/index.html rename to static/browse/thermal_expansion/cyclic_assembler_resonant/index.html diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/destabilized_redstone_bucket.png b/static/browse/thermal_expansion/destabilized_redstone_bucket/icon.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/destabilized_redstone_bucket.png rename to static/browse/thermal_expansion/destabilized_redstone_bucket/icon.png diff --git a/prerender/browse/thermal_expansion/destabilized_redstone_bucket/index.html b/static/browse/thermal_expansion/destabilized_redstone_bucket/index.html similarity index 100% rename from prerender/browse/thermal_expansion/destabilized_redstone_bucket/index.html rename to static/browse/thermal_expansion/destabilized_redstone_bucket/index.html diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/dimmed_glowstone_illuminator.png b/static/browse/thermal_expansion/dimmed_glowstone_illuminator/icon.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/dimmed_glowstone_illuminator.png rename to static/browse/thermal_expansion/dimmed_glowstone_illuminator/icon.png diff --git a/prerender/browse/thermal_expansion/dimmed_glowstone_illuminator/index.html b/static/browse/thermal_expansion/dimmed_glowstone_illuminator/index.html similarity index 100% rename from prerender/browse/thermal_expansion/dimmed_glowstone_illuminator/index.html rename to static/browse/thermal_expansion/dimmed_glowstone_illuminator/index.html diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/dimmed_lumium_lamp.png b/static/browse/thermal_expansion/dimmed_lumium_lamp/icon.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/dimmed_lumium_lamp.png rename to static/browse/thermal_expansion/dimmed_lumium_lamp/icon.png diff --git a/prerender/browse/thermal_expansion/dimmed_lumium_lamp/index.html b/static/browse/thermal_expansion/dimmed_lumium_lamp/index.html similarity index 100% rename from prerender/browse/thermal_expansion/dimmed_lumium_lamp/index.html rename to static/browse/thermal_expansion/dimmed_lumium_lamp/index.html diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/dimmed_radiant_lumium_lamp.png b/static/browse/thermal_expansion/dimmed_radiant_lumium_lamp/icon.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/dimmed_radiant_lumium_lamp.png rename to static/browse/thermal_expansion/dimmed_radiant_lumium_lamp/icon.png diff --git a/prerender/browse/thermal_expansion/dimmed_radiant_lumium_lamp/index.html b/static/browse/thermal_expansion/dimmed_radiant_lumium_lamp/index.html similarity index 100% rename from prerender/browse/thermal_expansion/dimmed_radiant_lumium_lamp/index.html rename to static/browse/thermal_expansion/dimmed_radiant_lumium_lamp/index.html diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/dry_creative_sponge.png b/static/browse/thermal_expansion/dry_creative_sponge/icon.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/dry_creative_sponge.png rename to static/browse/thermal_expansion/dry_creative_sponge/icon.png diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/dry_magmatic_sponge.png b/static/browse/thermal_expansion/dry_magmatic_sponge/icon.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/dry_magmatic_sponge.png rename to static/browse/thermal_expansion/dry_magmatic_sponge/icon.png diff --git a/prerender/browse/thermal_expansion/dry_magmatic_sponge/index.html b/static/browse/thermal_expansion/dry_magmatic_sponge/index.html similarity index 100% rename from prerender/browse/thermal_expansion/dry_magmatic_sponge/index.html rename to static/browse/thermal_expansion/dry_magmatic_sponge/index.html diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/dry_plain_sponge.png b/static/browse/thermal_expansion/dry_plain_sponge/icon.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/dry_plain_sponge.png rename to static/browse/thermal_expansion/dry_plain_sponge/icon.png diff --git a/prerender/browse/thermal_expansion/dry_plain_sponge/index.html b/static/browse/thermal_expansion/dry_plain_sponge/index.html similarity index 100% rename from prerender/browse/thermal_expansion/dry_plain_sponge/index.html rename to static/browse/thermal_expansion/dry_plain_sponge/index.html diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/electrum_blend.png b/static/browse/thermal_expansion/electrum_blend/icon.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/electrum_blend.png rename to static/browse/thermal_expansion/electrum_blend/icon.png diff --git a/prerender/browse/thermal_expansion/electrum_blend/index.html b/static/browse/thermal_expansion/electrum_blend/index.html similarity index 100% rename from prerender/browse/thermal_expansion/electrum_blend/index.html rename to static/browse/thermal_expansion/electrum_blend/index.html diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/electrum_block.png b/static/browse/thermal_expansion/electrum_block/icon.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/electrum_block.png rename to static/browse/thermal_expansion/electrum_block/icon.png diff --git a/prerender/browse/thermal_expansion/electrum_block/index.html b/static/browse/thermal_expansion/electrum_block/index.html similarity index 100% rename from prerender/browse/thermal_expansion/electrum_block/index.html rename to static/browse/thermal_expansion/electrum_block/index.html diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/electrum_gear.png b/static/browse/thermal_expansion/electrum_gear/icon.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/electrum_gear.png rename to static/browse/thermal_expansion/electrum_gear/icon.png diff --git a/prerender/browse/thermal_expansion/electrum_gear/index.html b/static/browse/thermal_expansion/electrum_gear/index.html similarity index 100% rename from prerender/browse/thermal_expansion/electrum_gear/index.html rename to static/browse/thermal_expansion/electrum_gear/index.html diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/electrum_ingot.png b/static/browse/thermal_expansion/electrum_ingot/icon.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/electrum_ingot.png rename to static/browse/thermal_expansion/electrum_ingot/icon.png diff --git a/prerender/browse/thermal_expansion/electrum_ingot/index.html b/static/browse/thermal_expansion/electrum_ingot/index.html similarity index 100% rename from prerender/browse/thermal_expansion/electrum_ingot/index.html rename to static/browse/thermal_expansion/electrum_ingot/index.html diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/electrum_nugget.png b/static/browse/thermal_expansion/electrum_nugget/icon.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/electrum_nugget.png rename to static/browse/thermal_expansion/electrum_nugget/icon.png diff --git a/prerender/browse/thermal_expansion/electrum_nugget/index.html b/static/browse/thermal_expansion/electrum_nugget/index.html similarity index 100% rename from prerender/browse/thermal_expansion/electrum_nugget/index.html rename to static/browse/thermal_expansion/electrum_nugget/index.html diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/enderium_blend.png b/static/browse/thermal_expansion/enderium_blend/icon.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/enderium_blend.png rename to static/browse/thermal_expansion/enderium_blend/icon.png diff --git a/prerender/browse/thermal_expansion/enderium_blend/index.html b/static/browse/thermal_expansion/enderium_blend/index.html similarity index 100% rename from prerender/browse/thermal_expansion/enderium_blend/index.html rename to static/browse/thermal_expansion/enderium_blend/index.html diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/enderium_block.png b/static/browse/thermal_expansion/enderium_block/icon.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/enderium_block.png rename to static/browse/thermal_expansion/enderium_block/icon.png diff --git a/prerender/browse/thermal_expansion/enderium_block/index.html b/static/browse/thermal_expansion/enderium_block/index.html similarity index 100% rename from prerender/browse/thermal_expansion/enderium_block/index.html rename to static/browse/thermal_expansion/enderium_block/index.html diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/enderium_gear.png b/static/browse/thermal_expansion/enderium_gear/icon.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/enderium_gear.png rename to static/browse/thermal_expansion/enderium_gear/icon.png diff --git a/prerender/browse/thermal_expansion/enderium_gear/index.html b/static/browse/thermal_expansion/enderium_gear/index.html similarity index 100% rename from prerender/browse/thermal_expansion/enderium_gear/index.html rename to static/browse/thermal_expansion/enderium_gear/index.html diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/enderium_ingot.png b/static/browse/thermal_expansion/enderium_ingot/icon.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/enderium_ingot.png rename to static/browse/thermal_expansion/enderium_ingot/icon.png diff --git a/prerender/browse/thermal_expansion/enderium_ingot/index.html b/static/browse/thermal_expansion/enderium_ingot/index.html similarity index 100% rename from prerender/browse/thermal_expansion/enderium_ingot/index.html rename to static/browse/thermal_expansion/enderium_ingot/index.html diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/enderium_nugget.png b/static/browse/thermal_expansion/enderium_nugget/icon.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/enderium_nugget.png rename to static/browse/thermal_expansion/enderium_nugget/icon.png diff --git a/prerender/browse/thermal_expansion/enderium_nugget/index.html b/static/browse/thermal_expansion/enderium_nugget/index.html similarity index 100% rename from prerender/browse/thermal_expansion/enderium_nugget/index.html rename to static/browse/thermal_expansion/enderium_nugget/index.html diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/energetic_infuser.png b/static/browse/thermal_expansion/energetic_infuser/icon.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/energetic_infuser.png rename to static/browse/thermal_expansion/energetic_infuser/icon.png diff --git a/prerender/browse/thermal_expansion/energetic_infuser/index.html b/static/browse/thermal_expansion/energetic_infuser/index.html similarity index 100% rename from prerender/browse/thermal_expansion/energetic_infuser/index.html rename to static/browse/thermal_expansion/energetic_infuser/index.html diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/energetic_infuser_hardened.png b/static/browse/thermal_expansion/energetic_infuser_hardened/icon.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/energetic_infuser_hardened.png rename to static/browse/thermal_expansion/energetic_infuser_hardened/icon.png diff --git a/prerender/browse/thermal_expansion/energetic_infuser_hardened/index.html b/static/browse/thermal_expansion/energetic_infuser_hardened/index.html similarity index 100% rename from prerender/browse/thermal_expansion/energetic_infuser_hardened/index.html rename to static/browse/thermal_expansion/energetic_infuser_hardened/index.html diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/energetic_infuser_reinforced.png b/static/browse/thermal_expansion/energetic_infuser_reinforced/icon.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/energetic_infuser_reinforced.png rename to static/browse/thermal_expansion/energetic_infuser_reinforced/icon.png diff --git a/prerender/browse/thermal_expansion/energetic_infuser_reinforced/index.html b/static/browse/thermal_expansion/energetic_infuser_reinforced/index.html similarity index 100% rename from prerender/browse/thermal_expansion/energetic_infuser_reinforced/index.html rename to static/browse/thermal_expansion/energetic_infuser_reinforced/index.html diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/energetic_infuser_resonant.png b/static/browse/thermal_expansion/energetic_infuser_resonant/icon.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/energetic_infuser_resonant.png rename to static/browse/thermal_expansion/energetic_infuser_resonant/icon.png diff --git a/prerender/browse/thermal_expansion/energetic_infuser_resonant/index.html b/static/browse/thermal_expansion/energetic_infuser_resonant/index.html similarity index 100% rename from prerender/browse/thermal_expansion/energetic_infuser_resonant/index.html rename to static/browse/thermal_expansion/energetic_infuser_resonant/index.html diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/energized_glowstone_bucket.png b/static/browse/thermal_expansion/energized_glowstone_bucket/icon.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/energized_glowstone_bucket.png rename to static/browse/thermal_expansion/energized_glowstone_bucket/icon.png diff --git a/prerender/browse/thermal_expansion/energized_glowstone_bucket/index.html b/static/browse/thermal_expansion/energized_glowstone_bucket/index.html similarity index 100% rename from prerender/browse/thermal_expansion/energized_glowstone_bucket/index.html rename to static/browse/thermal_expansion/energized_glowstone_bucket/index.html diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/enervation_dynamo.png b/static/browse/thermal_expansion/enervation_dynamo/icon.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/enervation_dynamo.png rename to static/browse/thermal_expansion/enervation_dynamo/icon.png diff --git a/prerender/browse/thermal_expansion/enervation_dynamo/index.html b/static/browse/thermal_expansion/enervation_dynamo/index.html similarity index 100% rename from prerender/browse/thermal_expansion/enervation_dynamo/index.html rename to static/browse/thermal_expansion/enervation_dynamo/index.html diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/ferrous_block.png b/static/browse/thermal_expansion/ferrous_block/icon.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/ferrous_block.png rename to static/browse/thermal_expansion/ferrous_block/icon.png diff --git a/prerender/browse/thermal_expansion/ferrous_block/index.html b/static/browse/thermal_expansion/ferrous_block/index.html similarity index 100% rename from prerender/browse/thermal_expansion/ferrous_block/index.html rename to static/browse/thermal_expansion/ferrous_block/index.html diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/ferrous_gear.png b/static/browse/thermal_expansion/ferrous_gear/icon.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/ferrous_gear.png rename to static/browse/thermal_expansion/ferrous_gear/icon.png diff --git a/prerender/browse/thermal_expansion/ferrous_gear/index.html b/static/browse/thermal_expansion/ferrous_gear/index.html similarity index 100% rename from prerender/browse/thermal_expansion/ferrous_gear/index.html rename to static/browse/thermal_expansion/ferrous_gear/index.html diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/ferrous_ingot.png b/static/browse/thermal_expansion/ferrous_ingot/icon.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/ferrous_ingot.png rename to static/browse/thermal_expansion/ferrous_ingot/icon.png diff --git a/prerender/browse/thermal_expansion/ferrous_ingot/index.html b/static/browse/thermal_expansion/ferrous_ingot/index.html similarity index 100% rename from prerender/browse/thermal_expansion/ferrous_ingot/index.html rename to static/browse/thermal_expansion/ferrous_ingot/index.html diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/ferrous_nugget.png b/static/browse/thermal_expansion/ferrous_nugget/icon.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/ferrous_nugget.png rename to static/browse/thermal_expansion/ferrous_nugget/icon.png diff --git a/prerender/browse/thermal_expansion/ferrous_nugget/index.html b/static/browse/thermal_expansion/ferrous_nugget/index.html similarity index 100% rename from prerender/browse/thermal_expansion/ferrous_nugget/index.html rename to static/browse/thermal_expansion/ferrous_nugget/index.html diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/ferrous_ore.png b/static/browse/thermal_expansion/ferrous_ore/icon.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/ferrous_ore.png rename to static/browse/thermal_expansion/ferrous_ore/icon.png diff --git a/prerender/browse/thermal_expansion/ferrous_ore/index.html b/static/browse/thermal_expansion/ferrous_ore/index.html similarity index 100% rename from prerender/browse/thermal_expansion/ferrous_ore/index.html rename to static/browse/thermal_expansion/ferrous_ore/index.html diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/fluid_transposer.png b/static/browse/thermal_expansion/fluid_transposer/icon.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/fluid_transposer.png rename to static/browse/thermal_expansion/fluid_transposer/icon.png diff --git a/prerender/browse/thermal_expansion/fluid_transposer/index.html b/static/browse/thermal_expansion/fluid_transposer/index.html similarity index 100% rename from prerender/browse/thermal_expansion/fluid_transposer/index.html rename to static/browse/thermal_expansion/fluid_transposer/index.html diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/fluid_transposer_hardened.png b/static/browse/thermal_expansion/fluid_transposer_hardened/icon.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/fluid_transposer_hardened.png rename to static/browse/thermal_expansion/fluid_transposer_hardened/icon.png diff --git a/prerender/browse/thermal_expansion/fluid_transposer_hardened/index.html b/static/browse/thermal_expansion/fluid_transposer_hardened/index.html similarity index 100% rename from prerender/browse/thermal_expansion/fluid_transposer_hardened/index.html rename to static/browse/thermal_expansion/fluid_transposer_hardened/index.html diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/fluid_transposer_reinforced.png b/static/browse/thermal_expansion/fluid_transposer_reinforced/icon.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/fluid_transposer_reinforced.png rename to static/browse/thermal_expansion/fluid_transposer_reinforced/icon.png diff --git a/prerender/browse/thermal_expansion/fluid_transposer_reinforced/index.html b/static/browse/thermal_expansion/fluid_transposer_reinforced/index.html similarity index 100% rename from prerender/browse/thermal_expansion/fluid_transposer_reinforced/index.html rename to static/browse/thermal_expansion/fluid_transposer_reinforced/index.html diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/fluid_transposer_resonant.png b/static/browse/thermal_expansion/fluid_transposer_resonant/icon.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/fluid_transposer_resonant.png rename to static/browse/thermal_expansion/fluid_transposer_resonant/icon.png diff --git a/prerender/browse/thermal_expansion/fluid_transposer_resonant/index.html b/static/browse/thermal_expansion/fluid_transposer_resonant/index.html similarity index 100% rename from prerender/browse/thermal_expansion/fluid_transposer_resonant/index.html rename to static/browse/thermal_expansion/fluid_transposer_resonant/index.html diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/flux_igniter.png b/static/browse/thermal_expansion/flux_igniter/icon.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/flux_igniter.png rename to static/browse/thermal_expansion/flux_igniter/icon.png diff --git a/prerender/browse/thermal_expansion/flux_igniter/index.html b/static/browse/thermal_expansion/flux_igniter/index.html similarity index 100% rename from prerender/browse/thermal_expansion/flux_igniter/index.html rename to static/browse/thermal_expansion/flux_igniter/index.html diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/gelid_cryotheum_bucket.png b/static/browse/thermal_expansion/gelid_cryotheum_bucket/icon.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/gelid_cryotheum_bucket.png rename to static/browse/thermal_expansion/gelid_cryotheum_bucket/icon.png diff --git a/prerender/browse/thermal_expansion/gelid_cryotheum_bucket/index.html b/static/browse/thermal_expansion/gelid_cryotheum_bucket/index.html similarity index 100% rename from prerender/browse/thermal_expansion/gelid_cryotheum_bucket/index.html rename to static/browse/thermal_expansion/gelid_cryotheum_bucket/index.html diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/glacial_precipitator.png b/static/browse/thermal_expansion/glacial_precipitator/icon.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/glacial_precipitator.png rename to static/browse/thermal_expansion/glacial_precipitator/icon.png diff --git a/prerender/browse/thermal_expansion/glacial_precipitator/index.html b/static/browse/thermal_expansion/glacial_precipitator/index.html similarity index 100% rename from prerender/browse/thermal_expansion/glacial_precipitator/index.html rename to static/browse/thermal_expansion/glacial_precipitator/index.html diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/glacial_precipitator_hardened.png b/static/browse/thermal_expansion/glacial_precipitator_hardened/icon.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/glacial_precipitator_hardened.png rename to static/browse/thermal_expansion/glacial_precipitator_hardened/icon.png diff --git a/prerender/browse/thermal_expansion/glacial_precipitator_hardened/index.html b/static/browse/thermal_expansion/glacial_precipitator_hardened/index.html similarity index 100% rename from prerender/browse/thermal_expansion/glacial_precipitator_hardened/index.html rename to static/browse/thermal_expansion/glacial_precipitator_hardened/index.html diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/glacial_precipitator_reinforced.png b/static/browse/thermal_expansion/glacial_precipitator_reinforced/icon.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/glacial_precipitator_reinforced.png rename to static/browse/thermal_expansion/glacial_precipitator_reinforced/icon.png diff --git a/prerender/browse/thermal_expansion/glacial_precipitator_reinforced/index.html b/static/browse/thermal_expansion/glacial_precipitator_reinforced/index.html similarity index 100% rename from prerender/browse/thermal_expansion/glacial_precipitator_reinforced/index.html rename to static/browse/thermal_expansion/glacial_precipitator_reinforced/index.html diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/glacial_precipitator_resonant.png b/static/browse/thermal_expansion/glacial_precipitator_resonant/icon.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/glacial_precipitator_resonant.png rename to static/browse/thermal_expansion/glacial_precipitator_resonant/icon.png diff --git a/prerender/browse/thermal_expansion/glacial_precipitator_resonant/index.html b/static/browse/thermal_expansion/glacial_precipitator_resonant/index.html similarity index 100% rename from prerender/browse/thermal_expansion/glacial_precipitator_resonant/index.html rename to static/browse/thermal_expansion/glacial_precipitator_resonant/index.html diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/glowstone_illuminator.png b/static/browse/thermal_expansion/glowstone_illuminator/icon.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/glowstone_illuminator.png rename to static/browse/thermal_expansion/glowstone_illuminator/icon.png diff --git a/prerender/browse/thermal_expansion/glowstone_illuminator/index.html b/static/browse/thermal_expansion/glowstone_illuminator/index.html similarity index 100% rename from prerender/browse/thermal_expansion/glowstone_illuminator/index.html rename to static/browse/thermal_expansion/glowstone_illuminator/index.html diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/gold_gear.png b/static/browse/thermal_expansion/gold_gear/icon.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/gold_gear.png rename to static/browse/thermal_expansion/gold_gear/icon.png diff --git a/prerender/browse/thermal_expansion/gold_gear/index.html b/static/browse/thermal_expansion/gold_gear/index.html similarity index 100% rename from prerender/browse/thermal_expansion/gold_gear/index.html rename to static/browse/thermal_expansion/gold_gear/index.html diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/gray_rockwool.png b/static/browse/thermal_expansion/gray_rockwool/icon.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/gray_rockwool.png rename to static/browse/thermal_expansion/gray_rockwool/icon.png diff --git a/prerender/browse/thermal_expansion/gray_rockwool/index.html b/static/browse/thermal_expansion/gray_rockwool/index.html similarity index 100% rename from prerender/browse/thermal_expansion/gray_rockwool/index.html rename to static/browse/thermal_expansion/gray_rockwool/index.html diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/green_rockwool.png b/static/browse/thermal_expansion/green_rockwool/icon.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/green_rockwool.png rename to static/browse/thermal_expansion/green_rockwool/icon.png diff --git a/prerender/browse/thermal_expansion/green_rockwool/index.html b/static/browse/thermal_expansion/green_rockwool/index.html similarity index 100% rename from prerender/browse/thermal_expansion/green_rockwool/index.html rename to static/browse/thermal_expansion/green_rockwool/index.html diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/hardened_cache.png b/static/browse/thermal_expansion/hardened_cache/icon.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/hardened_cache.png rename to static/browse/thermal_expansion/hardened_cache/icon.png diff --git a/prerender/browse/thermal_expansion/hardened_cache/index.html b/static/browse/thermal_expansion/hardened_cache/index.html similarity index 100% rename from prerender/browse/thermal_expansion/hardened_cache/index.html rename to static/browse/thermal_expansion/hardened_cache/index.html diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/hardened_energy_cell.png b/static/browse/thermal_expansion/hardened_energy_cell/icon.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/hardened_energy_cell.png rename to static/browse/thermal_expansion/hardened_energy_cell/icon.png diff --git a/prerender/browse/thermal_expansion/hardened_energy_cell/index.html b/static/browse/thermal_expansion/hardened_energy_cell/index.html similarity index 100% rename from prerender/browse/thermal_expansion/hardened_energy_cell/index.html rename to static/browse/thermal_expansion/hardened_energy_cell/index.html diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/hardened_flux_capacitor.png b/static/browse/thermal_expansion/hardened_flux_capacitor/icon.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/hardened_flux_capacitor.png rename to static/browse/thermal_expansion/hardened_flux_capacitor/icon.png diff --git a/prerender/browse/thermal_expansion/hardened_flux_capacitor/index.html b/static/browse/thermal_expansion/hardened_flux_capacitor/index.html similarity index 100% rename from prerender/browse/thermal_expansion/hardened_flux_capacitor/index.html rename to static/browse/thermal_expansion/hardened_flux_capacitor/index.html diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/hardened_glass.png b/static/browse/thermal_expansion/hardened_glass/icon.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/hardened_glass.png rename to static/browse/thermal_expansion/hardened_glass/icon.png diff --git a/prerender/browse/thermal_expansion/hardened_glass/index.html b/static/browse/thermal_expansion/hardened_glass/index.html similarity index 100% rename from prerender/browse/thermal_expansion/hardened_glass/index.html rename to static/browse/thermal_expansion/hardened_glass/index.html diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/hardened_portable_tank.png b/static/browse/thermal_expansion/hardened_portable_tank/icon.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/hardened_portable_tank.png rename to static/browse/thermal_expansion/hardened_portable_tank/icon.png diff --git a/prerender/browse/thermal_expansion/hardened_portable_tank/index.html b/static/browse/thermal_expansion/hardened_portable_tank/index.html similarity index 100% rename from prerender/browse/thermal_expansion/hardened_portable_tank/index.html rename to static/browse/thermal_expansion/hardened_portable_tank/index.html diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/hardened_satchel.png b/static/browse/thermal_expansion/hardened_satchel/icon.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/hardened_satchel.png rename to static/browse/thermal_expansion/hardened_satchel/icon.png diff --git a/prerender/browse/thermal_expansion/hardened_satchel/index.html b/static/browse/thermal_expansion/hardened_satchel/index.html similarity index 100% rename from prerender/browse/thermal_expansion/hardened_satchel/index.html rename to static/browse/thermal_expansion/hardened_satchel/index.html diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/hardened_strongbox.png b/static/browse/thermal_expansion/hardened_strongbox/icon.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/hardened_strongbox.png rename to static/browse/thermal_expansion/hardened_strongbox/icon.png diff --git a/prerender/browse/thermal_expansion/hardened_strongbox/index.html b/static/browse/thermal_expansion/hardened_strongbox/index.html similarity index 100% rename from prerender/browse/thermal_expansion/hardened_strongbox/index.html rename to static/browse/thermal_expansion/hardened_strongbox/index.html diff --git a/src/data/thermal_expansion/logo.png b/static/browse/thermal_expansion/icon.png similarity index 100% rename from src/data/thermal_expansion/logo.png rename to static/browse/thermal_expansion/icon.png diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/igneous_extruder.png b/static/browse/thermal_expansion/igneous_extruder/icon.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/igneous_extruder.png rename to static/browse/thermal_expansion/igneous_extruder/icon.png diff --git a/prerender/browse/thermal_expansion/igneous_extruder/index.html b/static/browse/thermal_expansion/igneous_extruder/index.html similarity index 100% rename from prerender/browse/thermal_expansion/igneous_extruder/index.html rename to static/browse/thermal_expansion/igneous_extruder/index.html diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/igneous_extruder_hardened.png b/static/browse/thermal_expansion/igneous_extruder_hardened/icon.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/igneous_extruder_hardened.png rename to static/browse/thermal_expansion/igneous_extruder_hardened/icon.png diff --git a/prerender/browse/thermal_expansion/igneous_extruder_hardened/index.html b/static/browse/thermal_expansion/igneous_extruder_hardened/index.html similarity index 100% rename from prerender/browse/thermal_expansion/igneous_extruder_hardened/index.html rename to static/browse/thermal_expansion/igneous_extruder_hardened/index.html diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/igneous_extruder_reinforced.png b/static/browse/thermal_expansion/igneous_extruder_reinforced/icon.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/igneous_extruder_reinforced.png rename to static/browse/thermal_expansion/igneous_extruder_reinforced/icon.png diff --git a/prerender/browse/thermal_expansion/igneous_extruder_reinforced/index.html b/static/browse/thermal_expansion/igneous_extruder_reinforced/index.html similarity index 100% rename from prerender/browse/thermal_expansion/igneous_extruder_reinforced/index.html rename to static/browse/thermal_expansion/igneous_extruder_reinforced/index.html diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/igneous_extruder_resonant.png b/static/browse/thermal_expansion/igneous_extruder_resonant/icon.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/igneous_extruder_resonant.png rename to static/browse/thermal_expansion/igneous_extruder_resonant/icon.png diff --git a/prerender/browse/thermal_expansion/igneous_extruder_resonant/index.html b/static/browse/thermal_expansion/igneous_extruder_resonant/index.html similarity index 100% rename from prerender/browse/thermal_expansion/igneous_extruder_resonant/index.html rename to static/browse/thermal_expansion/igneous_extruder_resonant/index.html diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/illuminator_frame.png b/static/browse/thermal_expansion/illuminator_frame/icon.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/illuminator_frame.png rename to static/browse/thermal_expansion/illuminator_frame/icon.png diff --git a/prerender/browse/thermal_expansion/illuminator_frame/index.html b/static/browse/thermal_expansion/illuminator_frame/index.html similarity index 100% rename from prerender/browse/thermal_expansion/illuminator_frame/index.html rename to static/browse/thermal_expansion/illuminator_frame/index.html diff --git a/static/browse/thermal_expansion/images/1000mb_blazing_pyrotheum.png b/static/browse/thermal_expansion/images/1000mb_blazing_pyrotheum.png new file mode 100644 index 000000000..9683c2485 Binary files /dev/null and b/static/browse/thermal_expansion/images/1000mb_blazing_pyrotheum.png differ diff --git a/static/browse/thermal_expansion/images/1000mb_destabilized_redstone.png b/static/browse/thermal_expansion/images/1000mb_destabilized_redstone.png new file mode 100644 index 000000000..83a03aee4 Binary files /dev/null and b/static/browse/thermal_expansion/images/1000mb_destabilized_redstone.png differ diff --git a/static/browse/thermal_expansion/images/1000mb_energized_glowstone.png b/static/browse/thermal_expansion/images/1000mb_energized_glowstone.png new file mode 100644 index 000000000..bff007a0e Binary files /dev/null and b/static/browse/thermal_expansion/images/1000mb_energized_glowstone.png differ diff --git a/static/browse/thermal_expansion/images/1000mb_gelid_cryotheum.png b/static/browse/thermal_expansion/images/1000mb_gelid_cryotheum.png new file mode 100644 index 000000000..680d1c281 Binary files /dev/null and b/static/browse/thermal_expansion/images/1000mb_gelid_cryotheum.png differ diff --git a/static/browse/thermal_expansion/images/1000mb_liquifacted_coal.png b/static/browse/thermal_expansion/images/1000mb_liquifacted_coal.png new file mode 100644 index 000000000..d2c84ea32 Binary files /dev/null and b/static/browse/thermal_expansion/images/1000mb_liquifacted_coal.png differ diff --git a/static/browse/thermal_expansion/images/1000mb_primal_mana.png b/static/browse/thermal_expansion/images/1000mb_primal_mana.png new file mode 100644 index 000000000..93d7132d9 Binary files /dev/null and b/static/browse/thermal_expansion/images/1000mb_primal_mana.png differ diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/resonant_ender.png b/static/browse/thermal_expansion/images/1000mb_resonant_ender.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/resonant_ender.png rename to static/browse/thermal_expansion/images/1000mb_resonant_ender.png diff --git a/static/browse/thermal_expansion/images/500mb_blazing_pyrotheum.png b/static/browse/thermal_expansion/images/500mb_blazing_pyrotheum.png new file mode 100644 index 000000000..9683c2485 Binary files /dev/null and b/static/browse/thermal_expansion/images/500mb_blazing_pyrotheum.png differ diff --git a/static/browse/thermal_expansion/images/500mb_destabilized_redstone.png b/static/browse/thermal_expansion/images/500mb_destabilized_redstone.png new file mode 100644 index 000000000..83a03aee4 Binary files /dev/null and b/static/browse/thermal_expansion/images/500mb_destabilized_redstone.png differ diff --git a/static/browse/thermal_expansion/images/500mb_gelid_cryotheum.png b/static/browse/thermal_expansion/images/500mb_gelid_cryotheum.png new file mode 100644 index 000000000..680d1c281 Binary files /dev/null and b/static/browse/thermal_expansion/images/500mb_gelid_cryotheum.png differ diff --git a/static/browse/thermal_expansion/images/500mb_liquifacted_coal.png b/static/browse/thermal_expansion/images/500mb_liquifacted_coal.png new file mode 100644 index 000000000..d2c84ea32 Binary files /dev/null and b/static/browse/thermal_expansion/images/500mb_liquifacted_coal.png differ diff --git a/static/browse/thermal_expansion/images/aqueous_accumulator.png b/static/browse/thermal_expansion/images/aqueous_accumulator.png new file mode 100644 index 000000000..112162dcc Binary files /dev/null and b/static/browse/thermal_expansion/images/aqueous_accumulator.png differ diff --git a/static/browse/thermal_expansion/images/aqueous_accumulator_hardened.png b/static/browse/thermal_expansion/images/aqueous_accumulator_hardened.png new file mode 100644 index 000000000..112162dcc Binary files /dev/null and b/static/browse/thermal_expansion/images/aqueous_accumulator_hardened.png differ diff --git a/static/browse/thermal_expansion/images/aqueous_accumulator_reinforced.png b/static/browse/thermal_expansion/images/aqueous_accumulator_reinforced.png new file mode 100644 index 000000000..112162dcc Binary files /dev/null and b/static/browse/thermal_expansion/images/aqueous_accumulator_reinforced.png differ diff --git a/static/browse/thermal_expansion/images/aqueous_accumulator_resonant.png b/static/browse/thermal_expansion/images/aqueous_accumulator_resonant.png new file mode 100644 index 000000000..112162dcc Binary files /dev/null and b/static/browse/thermal_expansion/images/aqueous_accumulator_resonant.png differ diff --git a/static/browse/thermal_expansion/images/augment_cryocoil_flux_amplifier.png b/static/browse/thermal_expansion/images/augment_cryocoil_flux_amplifier.png new file mode 100644 index 000000000..3c107257a Binary files /dev/null and b/static/browse/thermal_expansion/images/augment_cryocoil_flux_amplifier.png differ diff --git a/static/browse/thermal_expansion/images/augment_cryocoil_regulator.png b/static/browse/thermal_expansion/images/augment_cryocoil_regulator.png new file mode 100644 index 000000000..f3212e799 Binary files /dev/null and b/static/browse/thermal_expansion/images/augment_cryocoil_regulator.png differ diff --git a/static/browse/thermal_expansion/images/augment_flux_linkage_optimization.png b/static/browse/thermal_expansion/images/augment_flux_linkage_optimization.png new file mode 100644 index 000000000..004c53829 Binary files /dev/null and b/static/browse/thermal_expansion/images/augment_flux_linkage_optimization.png differ diff --git a/static/browse/thermal_expansion/images/augment_flux_modulation_booster.png b/static/browse/thermal_expansion/images/augment_flux_modulation_booster.png new file mode 100644 index 000000000..0a8750027 Binary files /dev/null and b/static/browse/thermal_expansion/images/augment_flux_modulation_booster.png differ diff --git a/static/browse/thermal_expansion/images/augment_gyroservo_feedback.png b/static/browse/thermal_expansion/images/augment_gyroservo_feedback.png new file mode 100644 index 000000000..22a0132ff Binary files /dev/null and b/static/browse/thermal_expansion/images/augment_gyroservo_feedback.png differ diff --git a/static/browse/thermal_expansion/images/augment_integrated_modular_framework.png b/static/browse/thermal_expansion/images/augment_integrated_modular_framework.png new file mode 100644 index 000000000..eecc59928 Binary files /dev/null and b/static/browse/thermal_expansion/images/augment_integrated_modular_framework.png differ diff --git a/static/browse/thermal_expansion/images/augment_integrated_redstone_circuit.png b/static/browse/thermal_expansion/images/augment_integrated_redstone_circuit.png new file mode 100644 index 000000000..98dce2f71 Binary files /dev/null and b/static/browse/thermal_expansion/images/augment_integrated_redstone_circuit.png differ diff --git a/static/browse/thermal_expansion/images/augment_integrated_servo_mechanism.png b/static/browse/thermal_expansion/images/augment_integrated_servo_mechanism.png new file mode 100644 index 000000000..c232ae553 Binary files /dev/null and b/static/browse/thermal_expansion/images/augment_integrated_servo_mechanism.png differ diff --git a/static/browse/thermal_expansion/images/augment_overclocked_modular_gearbox.png b/static/browse/thermal_expansion/images/augment_overclocked_modular_gearbox.png new file mode 100644 index 000000000..0dec26a44 Binary files /dev/null and b/static/browse/thermal_expansion/images/augment_overclocked_modular_gearbox.png differ diff --git a/static/browse/thermal_expansion/images/augment_secondary_gearbox.png b/static/browse/thermal_expansion/images/augment_secondary_gearbox.png new file mode 100644 index 000000000..a24a4509b Binary files /dev/null and b/static/browse/thermal_expansion/images/augment_secondary_gearbox.png differ diff --git a/static/browse/thermal_expansion/images/augment_secondary_reception_coil.png b/static/browse/thermal_expansion/images/augment_secondary_reception_coil.png new file mode 100644 index 000000000..f65c06b99 Binary files /dev/null and b/static/browse/thermal_expansion/images/augment_secondary_reception_coil.png differ diff --git a/static/browse/thermal_expansion/images/augment_secondary_sieve.png b/static/browse/thermal_expansion/images/augment_secondary_sieve.png new file mode 100644 index 000000000..3075f04fd Binary files /dev/null and b/static/browse/thermal_expansion/images/augment_secondary_sieve.png differ diff --git a/static/browse/thermal_expansion/images/augment_secondary_transmission_coil.png b/static/browse/thermal_expansion/images/augment_secondary_transmission_coil.png new file mode 100644 index 000000000..39a95e5e8 Binary files /dev/null and b/static/browse/thermal_expansion/images/augment_secondary_transmission_coil.png differ diff --git a/static/browse/thermal_expansion/images/augment_space_time_flux_unifier.png b/static/browse/thermal_expansion/images/augment_space_time_flux_unifier.png new file mode 100644 index 000000000..1d21a1afc Binary files /dev/null and b/static/browse/thermal_expansion/images/augment_space_time_flux_unifier.png differ diff --git a/static/browse/thermal_expansion/images/augment_stabilized_frame.png b/static/browse/thermal_expansion/images/augment_stabilized_frame.png new file mode 100644 index 000000000..877bb5c7a Binary files /dev/null and b/static/browse/thermal_expansion/images/augment_stabilized_frame.png differ diff --git a/static/browse/thermal_expansion/images/augment_transmission_coil_ducting.png b/static/browse/thermal_expansion/images/augment_transmission_coil_ducting.png new file mode 100644 index 000000000..045adf39d Binary files /dev/null and b/static/browse/thermal_expansion/images/augment_transmission_coil_ducting.png differ diff --git a/static/browse/thermal_expansion/images/autonomous_activator.png b/static/browse/thermal_expansion/images/autonomous_activator.png new file mode 100644 index 000000000..a38069a10 Binary files /dev/null and b/static/browse/thermal_expansion/images/autonomous_activator.png differ diff --git a/static/browse/thermal_expansion/images/basic_cache.png b/static/browse/thermal_expansion/images/basic_cache.png new file mode 100644 index 000000000..c56b84eda Binary files /dev/null and b/static/browse/thermal_expansion/images/basic_cache.png differ diff --git a/static/browse/thermal_expansion/images/black_rockwool.png b/static/browse/thermal_expansion/images/black_rockwool.png new file mode 100644 index 000000000..08327286f Binary files /dev/null and b/static/browse/thermal_expansion/images/black_rockwool.png differ diff --git a/static/browse/thermal_expansion/images/blazing_pyrotheum_bucket.png b/static/browse/thermal_expansion/images/blazing_pyrotheum_bucket.png new file mode 100644 index 000000000..f6dc6f114 Binary files /dev/null and b/static/browse/thermal_expansion/images/blazing_pyrotheum_bucket.png differ diff --git a/static/browse/thermal_expansion/images/blizz_powder.png b/static/browse/thermal_expansion/images/blizz_powder.png new file mode 100644 index 000000000..0a8d21594 Binary files /dev/null and b/static/browse/thermal_expansion/images/blizz_powder.png differ diff --git a/static/browse/thermal_expansion/images/blizz_rod.png b/static/browse/thermal_expansion/images/blizz_rod.png new file mode 100644 index 000000000..2a88ebecb Binary files /dev/null and b/static/browse/thermal_expansion/images/blizz_rod.png differ diff --git a/static/browse/thermal_expansion/images/blue_rockwool.png b/static/browse/thermal_expansion/images/blue_rockwool.png new file mode 100644 index 000000000..44aa8c0ca Binary files /dev/null and b/static/browse/thermal_expansion/images/blue_rockwool.png differ diff --git a/static/browse/thermal_expansion/images/brown_rockwool.png b/static/browse/thermal_expansion/images/brown_rockwool.png new file mode 100644 index 000000000..8b485d0fe Binary files /dev/null and b/static/browse/thermal_expansion/images/brown_rockwool.png differ diff --git a/static/browse/thermal_expansion/images/cinnabar.png b/static/browse/thermal_expansion/images/cinnabar.png new file mode 100644 index 000000000..1ba4bbb78 Binary files /dev/null and b/static/browse/thermal_expansion/images/cinnabar.png differ diff --git a/static/browse/thermal_expansion/images/compressed_sawdust.png b/static/browse/thermal_expansion/images/compressed_sawdust.png new file mode 100644 index 000000000..0b06bc2f0 Binary files /dev/null and b/static/browse/thermal_expansion/images/compressed_sawdust.png differ diff --git a/static/browse/thermal_expansion/images/compression_dynamo.png b/static/browse/thermal_expansion/images/compression_dynamo.png new file mode 100644 index 000000000..aff616571 Binary files /dev/null and b/static/browse/thermal_expansion/images/compression_dynamo.png differ diff --git a/static/browse/thermal_expansion/images/copper_block.png b/static/browse/thermal_expansion/images/copper_block.png new file mode 100644 index 000000000..4c9d8e8e3 Binary files /dev/null and b/static/browse/thermal_expansion/images/copper_block.png differ diff --git a/static/browse/thermal_expansion/images/copper_gear.png b/static/browse/thermal_expansion/images/copper_gear.png new file mode 100644 index 000000000..cf4706b0d Binary files /dev/null and b/static/browse/thermal_expansion/images/copper_gear.png differ diff --git a/static/browse/thermal_expansion/images/copper_ingot.png b/static/browse/thermal_expansion/images/copper_ingot.png new file mode 100644 index 000000000..b708189a1 Binary files /dev/null and b/static/browse/thermal_expansion/images/copper_ingot.png differ diff --git a/static/browse/thermal_expansion/images/copper_nugget.png b/static/browse/thermal_expansion/images/copper_nugget.png new file mode 100644 index 000000000..1229603b1 Binary files /dev/null and b/static/browse/thermal_expansion/images/copper_nugget.png differ diff --git a/static/browse/thermal_expansion/images/copper_ore.png b/static/browse/thermal_expansion/images/copper_ore.png new file mode 100644 index 000000000..7cf4fe004 Binary files /dev/null and b/static/browse/thermal_expansion/images/copper_ore.png differ diff --git a/static/browse/thermal_expansion/images/crescent_hammer.png b/static/browse/thermal_expansion/images/crescent_hammer.png new file mode 100644 index 000000000..2748b236e Binary files /dev/null and b/static/browse/thermal_expansion/images/crescent_hammer.png differ diff --git a/static/browse/thermal_expansion/images/cryotheum_dust.png b/static/browse/thermal_expansion/images/cryotheum_dust.png new file mode 100644 index 000000000..022879070 Binary files /dev/null and b/static/browse/thermal_expansion/images/cryotheum_dust.png differ diff --git a/static/browse/thermal_expansion/images/cyan_rockwool.png b/static/browse/thermal_expansion/images/cyan_rockwool.png new file mode 100644 index 000000000..9685b35a0 Binary files /dev/null and b/static/browse/thermal_expansion/images/cyan_rockwool.png differ diff --git a/static/browse/thermal_expansion/images/cyclic_assembler.png b/static/browse/thermal_expansion/images/cyclic_assembler.png new file mode 100644 index 000000000..1ff619d79 Binary files /dev/null and b/static/browse/thermal_expansion/images/cyclic_assembler.png differ diff --git a/static/browse/thermal_expansion/images/cyclic_assembler_hardened.png b/static/browse/thermal_expansion/images/cyclic_assembler_hardened.png new file mode 100644 index 000000000..1ff619d79 Binary files /dev/null and b/static/browse/thermal_expansion/images/cyclic_assembler_hardened.png differ diff --git a/static/browse/thermal_expansion/images/cyclic_assembler_reinforced.png b/static/browse/thermal_expansion/images/cyclic_assembler_reinforced.png new file mode 100644 index 000000000..1ff619d79 Binary files /dev/null and b/static/browse/thermal_expansion/images/cyclic_assembler_reinforced.png differ diff --git a/static/browse/thermal_expansion/images/cyclic_assembler_resonant.png b/static/browse/thermal_expansion/images/cyclic_assembler_resonant.png new file mode 100644 index 000000000..1ff619d79 Binary files /dev/null and b/static/browse/thermal_expansion/images/cyclic_assembler_resonant.png differ diff --git a/static/browse/thermal_expansion/images/destabilized_redstone_bucket.png b/static/browse/thermal_expansion/images/destabilized_redstone_bucket.png new file mode 100644 index 000000000..f3214d2b2 Binary files /dev/null and b/static/browse/thermal_expansion/images/destabilized_redstone_bucket.png differ diff --git a/static/browse/thermal_expansion/images/dimmed_glowstone_illuminator.png b/static/browse/thermal_expansion/images/dimmed_glowstone_illuminator.png new file mode 100644 index 000000000..d9510e61e Binary files /dev/null and b/static/browse/thermal_expansion/images/dimmed_glowstone_illuminator.png differ diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/lumium_lamp.png b/static/browse/thermal_expansion/images/dimmed_lumium_lamp.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/lumium_lamp.png rename to static/browse/thermal_expansion/images/dimmed_lumium_lamp.png diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/radiant_lumium_lamp.png b/static/browse/thermal_expansion/images/dimmed_radiant_lumium_lamp.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/radiant_lumium_lamp.png rename to static/browse/thermal_expansion/images/dimmed_radiant_lumium_lamp.png diff --git a/static/browse/thermal_expansion/images/dry_creative_sponge.png b/static/browse/thermal_expansion/images/dry_creative_sponge.png new file mode 100644 index 000000000..d16c688f0 Binary files /dev/null and b/static/browse/thermal_expansion/images/dry_creative_sponge.png differ diff --git a/static/browse/thermal_expansion/images/dry_magmatic_sponge.png b/static/browse/thermal_expansion/images/dry_magmatic_sponge.png new file mode 100644 index 000000000..c41220aaa Binary files /dev/null and b/static/browse/thermal_expansion/images/dry_magmatic_sponge.png differ diff --git a/static/browse/thermal_expansion/images/dry_plain_sponge.png b/static/browse/thermal_expansion/images/dry_plain_sponge.png new file mode 100644 index 000000000..8b31296b9 Binary files /dev/null and b/static/browse/thermal_expansion/images/dry_plain_sponge.png differ diff --git a/static/browse/thermal_expansion/images/electrum_blend.png b/static/browse/thermal_expansion/images/electrum_blend.png new file mode 100644 index 000000000..69a3ca490 Binary files /dev/null and b/static/browse/thermal_expansion/images/electrum_blend.png differ diff --git a/static/browse/thermal_expansion/images/electrum_block.png b/static/browse/thermal_expansion/images/electrum_block.png new file mode 100644 index 000000000..e35b94e3d Binary files /dev/null and b/static/browse/thermal_expansion/images/electrum_block.png differ diff --git a/static/browse/thermal_expansion/images/electrum_gear.png b/static/browse/thermal_expansion/images/electrum_gear.png new file mode 100644 index 000000000..66b273f2e Binary files /dev/null and b/static/browse/thermal_expansion/images/electrum_gear.png differ diff --git a/static/browse/thermal_expansion/images/electrum_ingot.png b/static/browse/thermal_expansion/images/electrum_ingot.png new file mode 100644 index 000000000..aa1b1bad3 Binary files /dev/null and b/static/browse/thermal_expansion/images/electrum_ingot.png differ diff --git a/static/browse/thermal_expansion/images/electrum_nugget.png b/static/browse/thermal_expansion/images/electrum_nugget.png new file mode 100644 index 000000000..afb792345 Binary files /dev/null and b/static/browse/thermal_expansion/images/electrum_nugget.png differ diff --git a/static/browse/thermal_expansion/images/enderium_blend.png b/static/browse/thermal_expansion/images/enderium_blend.png new file mode 100644 index 000000000..d67b7eff1 Binary files /dev/null and b/static/browse/thermal_expansion/images/enderium_blend.png differ diff --git a/static/browse/thermal_expansion/images/enderium_block.png b/static/browse/thermal_expansion/images/enderium_block.png new file mode 100644 index 000000000..625d4b20f Binary files /dev/null and b/static/browse/thermal_expansion/images/enderium_block.png differ diff --git a/static/browse/thermal_expansion/images/enderium_gear.png b/static/browse/thermal_expansion/images/enderium_gear.png new file mode 100644 index 000000000..8676b9cbd Binary files /dev/null and b/static/browse/thermal_expansion/images/enderium_gear.png differ diff --git a/static/browse/thermal_expansion/images/enderium_ingot.png b/static/browse/thermal_expansion/images/enderium_ingot.png new file mode 100644 index 000000000..037aa1e3f Binary files /dev/null and b/static/browse/thermal_expansion/images/enderium_ingot.png differ diff --git a/static/browse/thermal_expansion/images/enderium_nugget.png b/static/browse/thermal_expansion/images/enderium_nugget.png new file mode 100644 index 000000000..28206fbfe Binary files /dev/null and b/static/browse/thermal_expansion/images/enderium_nugget.png differ diff --git a/static/browse/thermal_expansion/images/energetic_infuser.png b/static/browse/thermal_expansion/images/energetic_infuser.png new file mode 100644 index 000000000..e9fb6a11e Binary files /dev/null and b/static/browse/thermal_expansion/images/energetic_infuser.png differ diff --git a/static/browse/thermal_expansion/images/energetic_infuser_hardened.png b/static/browse/thermal_expansion/images/energetic_infuser_hardened.png new file mode 100644 index 000000000..e9fb6a11e Binary files /dev/null and b/static/browse/thermal_expansion/images/energetic_infuser_hardened.png differ diff --git a/static/browse/thermal_expansion/images/energetic_infuser_reinforced.png b/static/browse/thermal_expansion/images/energetic_infuser_reinforced.png new file mode 100644 index 000000000..e9fb6a11e Binary files /dev/null and b/static/browse/thermal_expansion/images/energetic_infuser_reinforced.png differ diff --git a/static/browse/thermal_expansion/images/energetic_infuser_resonant.png b/static/browse/thermal_expansion/images/energetic_infuser_resonant.png new file mode 100644 index 000000000..e9fb6a11e Binary files /dev/null and b/static/browse/thermal_expansion/images/energetic_infuser_resonant.png differ diff --git a/static/browse/thermal_expansion/images/energized_glowstone_bucket.png b/static/browse/thermal_expansion/images/energized_glowstone_bucket.png new file mode 100644 index 000000000..9a27c1fca Binary files /dev/null and b/static/browse/thermal_expansion/images/energized_glowstone_bucket.png differ diff --git a/static/browse/thermal_expansion/images/enervation_dynamo.png b/static/browse/thermal_expansion/images/enervation_dynamo.png new file mode 100644 index 000000000..cd9471afb Binary files /dev/null and b/static/browse/thermal_expansion/images/enervation_dynamo.png differ diff --git a/static/browse/thermal_expansion/images/ferrous_block.png b/static/browse/thermal_expansion/images/ferrous_block.png new file mode 100644 index 000000000..a4bf8cdaf Binary files /dev/null and b/static/browse/thermal_expansion/images/ferrous_block.png differ diff --git a/static/browse/thermal_expansion/images/ferrous_gear.png b/static/browse/thermal_expansion/images/ferrous_gear.png new file mode 100644 index 000000000..e3f79798a Binary files /dev/null and b/static/browse/thermal_expansion/images/ferrous_gear.png differ diff --git a/static/browse/thermal_expansion/images/ferrous_ingot.png b/static/browse/thermal_expansion/images/ferrous_ingot.png new file mode 100644 index 000000000..518450d5a Binary files /dev/null and b/static/browse/thermal_expansion/images/ferrous_ingot.png differ diff --git a/static/browse/thermal_expansion/images/ferrous_nugget.png b/static/browse/thermal_expansion/images/ferrous_nugget.png new file mode 100644 index 000000000..a8c72fa3e Binary files /dev/null and b/static/browse/thermal_expansion/images/ferrous_nugget.png differ diff --git a/static/browse/thermal_expansion/images/ferrous_ore.png b/static/browse/thermal_expansion/images/ferrous_ore.png new file mode 100644 index 000000000..3ac522d04 Binary files /dev/null and b/static/browse/thermal_expansion/images/ferrous_ore.png differ diff --git a/static/browse/thermal_expansion/images/fluid_transposer.png b/static/browse/thermal_expansion/images/fluid_transposer.png new file mode 100644 index 000000000..5b2e66cde Binary files /dev/null and b/static/browse/thermal_expansion/images/fluid_transposer.png differ diff --git a/static/browse/thermal_expansion/images/fluid_transposer_hardened.png b/static/browse/thermal_expansion/images/fluid_transposer_hardened.png new file mode 100644 index 000000000..5b2e66cde Binary files /dev/null and b/static/browse/thermal_expansion/images/fluid_transposer_hardened.png differ diff --git a/static/browse/thermal_expansion/images/fluid_transposer_reinforced.png b/static/browse/thermal_expansion/images/fluid_transposer_reinforced.png new file mode 100644 index 000000000..5b2e66cde Binary files /dev/null and b/static/browse/thermal_expansion/images/fluid_transposer_reinforced.png differ diff --git a/static/browse/thermal_expansion/images/fluid_transposer_resonant.png b/static/browse/thermal_expansion/images/fluid_transposer_resonant.png new file mode 100644 index 000000000..5b2e66cde Binary files /dev/null and b/static/browse/thermal_expansion/images/fluid_transposer_resonant.png differ diff --git a/static/browse/thermal_expansion/images/flux_igniter.png b/static/browse/thermal_expansion/images/flux_igniter.png new file mode 100644 index 000000000..914e01f2b Binary files /dev/null and b/static/browse/thermal_expansion/images/flux_igniter.png differ diff --git a/static/browse/thermal_expansion/images/gelid_cryotheum_bucket.png b/static/browse/thermal_expansion/images/gelid_cryotheum_bucket.png new file mode 100644 index 000000000..5f37a0b4c Binary files /dev/null and b/static/browse/thermal_expansion/images/gelid_cryotheum_bucket.png differ diff --git a/static/browse/thermal_expansion/images/glacial_precipitator.png b/static/browse/thermal_expansion/images/glacial_precipitator.png new file mode 100644 index 000000000..131721bb9 Binary files /dev/null and b/static/browse/thermal_expansion/images/glacial_precipitator.png differ diff --git a/static/browse/thermal_expansion/images/glacial_precipitator_hardened.png b/static/browse/thermal_expansion/images/glacial_precipitator_hardened.png new file mode 100644 index 000000000..131721bb9 Binary files /dev/null and b/static/browse/thermal_expansion/images/glacial_precipitator_hardened.png differ diff --git a/static/browse/thermal_expansion/images/glacial_precipitator_reinforced.png b/static/browse/thermal_expansion/images/glacial_precipitator_reinforced.png new file mode 100644 index 000000000..131721bb9 Binary files /dev/null and b/static/browse/thermal_expansion/images/glacial_precipitator_reinforced.png differ diff --git a/static/browse/thermal_expansion/images/glacial_precipitator_resonant.png b/static/browse/thermal_expansion/images/glacial_precipitator_resonant.png new file mode 100644 index 000000000..131721bb9 Binary files /dev/null and b/static/browse/thermal_expansion/images/glacial_precipitator_resonant.png differ diff --git a/static/browse/thermal_expansion/images/glowstone_illuminator.png b/static/browse/thermal_expansion/images/glowstone_illuminator.png new file mode 100644 index 000000000..d9510e61e Binary files /dev/null and b/static/browse/thermal_expansion/images/glowstone_illuminator.png differ diff --git a/static/browse/thermal_expansion/images/gold_gear.png b/static/browse/thermal_expansion/images/gold_gear.png new file mode 100644 index 000000000..06afb5f44 Binary files /dev/null and b/static/browse/thermal_expansion/images/gold_gear.png differ diff --git a/static/browse/thermal_expansion/images/gray_rockwool.png b/static/browse/thermal_expansion/images/gray_rockwool.png new file mode 100644 index 000000000..c97bccad7 Binary files /dev/null and b/static/browse/thermal_expansion/images/gray_rockwool.png differ diff --git a/static/browse/thermal_expansion/images/green_rockwool.png b/static/browse/thermal_expansion/images/green_rockwool.png new file mode 100644 index 000000000..c228cc376 Binary files /dev/null and b/static/browse/thermal_expansion/images/green_rockwool.png differ diff --git a/static/browse/thermal_expansion/images/hardened_cache.png b/static/browse/thermal_expansion/images/hardened_cache.png new file mode 100644 index 000000000..f34b3c9fc Binary files /dev/null and b/static/browse/thermal_expansion/images/hardened_cache.png differ diff --git a/static/browse/thermal_expansion/images/hardened_energy_cell.png b/static/browse/thermal_expansion/images/hardened_energy_cell.png new file mode 100644 index 000000000..e0a0b0721 Binary files /dev/null and b/static/browse/thermal_expansion/images/hardened_energy_cell.png differ diff --git a/static/browse/thermal_expansion/images/hardened_flux_capacitor.png b/static/browse/thermal_expansion/images/hardened_flux_capacitor.png new file mode 100644 index 000000000..3b1bce145 Binary files /dev/null and b/static/browse/thermal_expansion/images/hardened_flux_capacitor.png differ diff --git a/static/browse/thermal_expansion/images/hardened_glass.png b/static/browse/thermal_expansion/images/hardened_glass.png new file mode 100644 index 000000000..4552d82a0 Binary files /dev/null and b/static/browse/thermal_expansion/images/hardened_glass.png differ diff --git a/static/browse/thermal_expansion/images/hardened_portable_tank.png b/static/browse/thermal_expansion/images/hardened_portable_tank.png new file mode 100644 index 000000000..c0bff6557 Binary files /dev/null and b/static/browse/thermal_expansion/images/hardened_portable_tank.png differ diff --git a/static/browse/thermal_expansion/images/hardened_satchel.png b/static/browse/thermal_expansion/images/hardened_satchel.png new file mode 100644 index 000000000..30391079b Binary files /dev/null and b/static/browse/thermal_expansion/images/hardened_satchel.png differ diff --git a/static/browse/thermal_expansion/images/hardened_strongbox.png b/static/browse/thermal_expansion/images/hardened_strongbox.png new file mode 100644 index 000000000..dd0e3c9be Binary files /dev/null and b/static/browse/thermal_expansion/images/hardened_strongbox.png differ diff --git a/static/browse/thermal_expansion/images/igneous_extruder.png b/static/browse/thermal_expansion/images/igneous_extruder.png new file mode 100644 index 000000000..46dde38ca Binary files /dev/null and b/static/browse/thermal_expansion/images/igneous_extruder.png differ diff --git a/static/browse/thermal_expansion/images/igneous_extruder_hardened.png b/static/browse/thermal_expansion/images/igneous_extruder_hardened.png new file mode 100644 index 000000000..46dde38ca Binary files /dev/null and b/static/browse/thermal_expansion/images/igneous_extruder_hardened.png differ diff --git a/static/browse/thermal_expansion/images/igneous_extruder_reinforced.png b/static/browse/thermal_expansion/images/igneous_extruder_reinforced.png new file mode 100644 index 000000000..46dde38ca Binary files /dev/null and b/static/browse/thermal_expansion/images/igneous_extruder_reinforced.png differ diff --git a/static/browse/thermal_expansion/images/igneous_extruder_resonant.png b/static/browse/thermal_expansion/images/igneous_extruder_resonant.png new file mode 100644 index 000000000..46dde38ca Binary files /dev/null and b/static/browse/thermal_expansion/images/igneous_extruder_resonant.png differ diff --git a/static/browse/thermal_expansion/images/illuminator_frame.png b/static/browse/thermal_expansion/images/illuminator_frame.png new file mode 100644 index 000000000..42b5c9a77 Binary files /dev/null and b/static/browse/thermal_expansion/images/illuminator_frame.png differ diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/impluse_plate.png b/static/browse/thermal_expansion/images/impluse_plate.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/impluse_plate.png rename to static/browse/thermal_expansion/images/impluse_plate.png diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/induction_smelter.png b/static/browse/thermal_expansion/images/induction_smelter.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/induction_smelter.png rename to static/browse/thermal_expansion/images/induction_smelter.png diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/induction_smelter_hardened.png b/static/browse/thermal_expansion/images/induction_smelter_hardened.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/induction_smelter_hardened.png rename to static/browse/thermal_expansion/images/induction_smelter_hardened.png diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/induction_smelter_reinforced.png b/static/browse/thermal_expansion/images/induction_smelter_reinforced.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/induction_smelter_reinforced.png rename to static/browse/thermal_expansion/images/induction_smelter_reinforced.png diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/induction_smelter_resonant.png b/static/browse/thermal_expansion/images/induction_smelter_resonant.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/induction_smelter_resonant.png rename to static/browse/thermal_expansion/images/induction_smelter_resonant.png diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/invar_axe.png b/static/browse/thermal_expansion/images/invar_axe.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/invar_axe.png rename to static/browse/thermal_expansion/images/invar_axe.png diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/invar_battlewrench.png b/static/browse/thermal_expansion/images/invar_battlewrench.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/invar_battlewrench.png rename to static/browse/thermal_expansion/images/invar_battlewrench.png diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/invar_blend.png b/static/browse/thermal_expansion/images/invar_blend.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/invar_blend.png rename to static/browse/thermal_expansion/images/invar_blend.png diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/invar_block.png b/static/browse/thermal_expansion/images/invar_block.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/invar_block.png rename to static/browse/thermal_expansion/images/invar_block.png diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/invar_boots.png b/static/browse/thermal_expansion/images/invar_boots.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/invar_boots.png rename to static/browse/thermal_expansion/images/invar_boots.png diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/invar_chestplate.png b/static/browse/thermal_expansion/images/invar_chestplate.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/invar_chestplate.png rename to static/browse/thermal_expansion/images/invar_chestplate.png diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/invar_gear.png b/static/browse/thermal_expansion/images/invar_gear.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/invar_gear.png rename to static/browse/thermal_expansion/images/invar_gear.png diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/invar_helmet.png b/static/browse/thermal_expansion/images/invar_helmet.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/invar_helmet.png rename to static/browse/thermal_expansion/images/invar_helmet.png diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/invar_hoe.png b/static/browse/thermal_expansion/images/invar_hoe.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/invar_hoe.png rename to static/browse/thermal_expansion/images/invar_hoe.png diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/invar_ingot.png b/static/browse/thermal_expansion/images/invar_ingot.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/invar_ingot.png rename to static/browse/thermal_expansion/images/invar_ingot.png diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/invar_leggings.png b/static/browse/thermal_expansion/images/invar_leggings.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/invar_leggings.png rename to static/browse/thermal_expansion/images/invar_leggings.png diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/invar_nugget.png b/static/browse/thermal_expansion/images/invar_nugget.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/invar_nugget.png rename to static/browse/thermal_expansion/images/invar_nugget.png diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/invar_pickaxe.png b/static/browse/thermal_expansion/images/invar_pickaxe.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/invar_pickaxe.png rename to static/browse/thermal_expansion/images/invar_pickaxe.png diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/invar_reinforced_bow.png b/static/browse/thermal_expansion/images/invar_reinforced_bow.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/invar_reinforced_bow.png rename to static/browse/thermal_expansion/images/invar_reinforced_bow.png diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/invar_reinforced_fishing_rod.png b/static/browse/thermal_expansion/images/invar_reinforced_fishing_rod.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/invar_reinforced_fishing_rod.png rename to static/browse/thermal_expansion/images/invar_reinforced_fishing_rod.png diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/invar_shears.png b/static/browse/thermal_expansion/images/invar_shears.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/invar_shears.png rename to static/browse/thermal_expansion/images/invar_shears.png diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/invar_shovel.png b/static/browse/thermal_expansion/images/invar_shovel.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/invar_shovel.png rename to static/browse/thermal_expansion/images/invar_shovel.png diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/invar_sickle.png b/static/browse/thermal_expansion/images/invar_sickle.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/invar_sickle.png rename to static/browse/thermal_expansion/images/invar_sickle.png diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/invar_sword.png b/static/browse/thermal_expansion/images/invar_sword.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/invar_sword.png rename to static/browse/thermal_expansion/images/invar_sword.png diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/iron_gear.png b/static/browse/thermal_expansion/images/iron_gear.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/iron_gear.png rename to static/browse/thermal_expansion/images/iron_gear.png diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/iron_nugget.png b/static/browse/thermal_expansion/images/iron_nugget.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/iron_nugget.png rename to static/browse/thermal_expansion/images/iron_nugget.png diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/lead_block.png b/static/browse/thermal_expansion/images/lead_block.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/lead_block.png rename to static/browse/thermal_expansion/images/lead_block.png diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/lead_gear.png b/static/browse/thermal_expansion/images/lead_gear.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/lead_gear.png rename to static/browse/thermal_expansion/images/lead_gear.png diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/lead_ingot.png b/static/browse/thermal_expansion/images/lead_ingot.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/lead_ingot.png rename to static/browse/thermal_expansion/images/lead_ingot.png diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/lead_nugget.png b/static/browse/thermal_expansion/images/lead_nugget.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/lead_nugget.png rename to static/browse/thermal_expansion/images/lead_nugget.png diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/lead_ore.png b/static/browse/thermal_expansion/images/lead_ore.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/lead_ore.png rename to static/browse/thermal_expansion/images/lead_ore.png diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/leadstone_energy_cell.png b/static/browse/thermal_expansion/images/leadstone_energy_cell.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/leadstone_energy_cell.png rename to static/browse/thermal_expansion/images/leadstone_energy_cell.png diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/leadstone_energy_cell_frame.png b/static/browse/thermal_expansion/images/leadstone_energy_cell_frame.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/leadstone_energy_cell_frame.png rename to static/browse/thermal_expansion/images/leadstone_energy_cell_frame.png diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/leadstone_flux_capacitor.png b/static/browse/thermal_expansion/images/leadstone_flux_capacitor.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/leadstone_flux_capacitor.png rename to static/browse/thermal_expansion/images/leadstone_flux_capacitor.png diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/light_blue_rockwool.png b/static/browse/thermal_expansion/images/light_blue_rockwool.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/light_blue_rockwool.png rename to static/browse/thermal_expansion/images/light_blue_rockwool.png diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/light_gray_rockwool.png b/static/browse/thermal_expansion/images/light_gray_rockwool.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/light_gray_rockwool.png rename to static/browse/thermal_expansion/images/light_gray_rockwool.png diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/lime_rockwool.png b/static/browse/thermal_expansion/images/lime_rockwool.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/lime_rockwool.png rename to static/browse/thermal_expansion/images/lime_rockwool.png diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/liquifacted_coal_bucket.png b/static/browse/thermal_expansion/images/liquifacted_coal_bucket.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/liquifacted_coal_bucket.png rename to static/browse/thermal_expansion/images/liquifacted_coal_bucket.png diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/lumium_blend.png b/static/browse/thermal_expansion/images/lumium_blend.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/lumium_blend.png rename to static/browse/thermal_expansion/images/lumium_blend.png diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/lumium_block.png b/static/browse/thermal_expansion/images/lumium_block.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/lumium_block.png rename to static/browse/thermal_expansion/images/lumium_block.png diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/lumium_gear.png b/static/browse/thermal_expansion/images/lumium_gear.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/lumium_gear.png rename to static/browse/thermal_expansion/images/lumium_gear.png diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/lumium_ingot.png b/static/browse/thermal_expansion/images/lumium_ingot.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/lumium_ingot.png rename to static/browse/thermal_expansion/images/lumium_ingot.png diff --git a/static/browse/thermal_expansion/images/lumium_lamp.png b/static/browse/thermal_expansion/images/lumium_lamp.png new file mode 100644 index 000000000..684403222 Binary files /dev/null and b/static/browse/thermal_expansion/images/lumium_lamp.png differ diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/lumium_nugget.png b/static/browse/thermal_expansion/images/lumium_nugget.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/lumium_nugget.png rename to static/browse/thermal_expansion/images/lumium_nugget.png diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/machine_frame.png b/static/browse/thermal_expansion/images/machine_frame.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/machine_frame.png rename to static/browse/thermal_expansion/images/machine_frame.png diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/machine_frame_hardened.png b/static/browse/thermal_expansion/images/machine_frame_hardened.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/machine_frame_hardened.png rename to static/browse/thermal_expansion/images/machine_frame_hardened.png diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/machine_frame_reinforced.png b/static/browse/thermal_expansion/images/machine_frame_reinforced.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/machine_frame_reinforced.png rename to static/browse/thermal_expansion/images/machine_frame_reinforced.png diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/machine_frame_resonant.png b/static/browse/thermal_expansion/images/machine_frame_resonant.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/machine_frame_resonant.png rename to static/browse/thermal_expansion/images/machine_frame_resonant.png diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/machinist_s_workbench.png b/static/browse/thermal_expansion/images/machinist_s_workbench.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/machinist_s_workbench.png rename to static/browse/thermal_expansion/images/machinist_s_workbench.png diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/magenta_rockwool.png b/static/browse/thermal_expansion/images/magenta_rockwool.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/magenta_rockwool.png rename to static/browse/thermal_expansion/images/magenta_rockwool.png diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/magma_crucible.png b/static/browse/thermal_expansion/images/magma_crucible.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/magma_crucible.png rename to static/browse/thermal_expansion/images/magma_crucible.png diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/magma_crucible_hardened.png b/static/browse/thermal_expansion/images/magma_crucible_hardened.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/magma_crucible_hardened.png rename to static/browse/thermal_expansion/images/magma_crucible_hardened.png diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/magma_crucible_reinforced.png b/static/browse/thermal_expansion/images/magma_crucible_reinforced.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/magma_crucible_reinforced.png rename to static/browse/thermal_expansion/images/magma_crucible_reinforced.png diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/magma_crucible_resonant.png b/static/browse/thermal_expansion/images/magma_crucible_resonant.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/magma_crucible_resonant.png rename to static/browse/thermal_expansion/images/magma_crucible_resonant.png diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/magmatic_dynamo.png b/static/browse/thermal_expansion/images/magmatic_dynamo.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/magmatic_dynamo.png rename to static/browse/thermal_expansion/images/magmatic_dynamo.png diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/mana_dust.png b/static/browse/thermal_expansion/images/mana_dust.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/mana_dust.png rename to static/browse/thermal_expansion/images/mana_dust.png diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/mana_infused_block.png b/static/browse/thermal_expansion/images/mana_infused_block.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/mana_infused_block.png rename to static/browse/thermal_expansion/images/mana_infused_block.png diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/mana_infused_gear.png b/static/browse/thermal_expansion/images/mana_infused_gear.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/mana_infused_gear.png rename to static/browse/thermal_expansion/images/mana_infused_gear.png diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/mana_infused_ingot.png b/static/browse/thermal_expansion/images/mana_infused_ingot.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/mana_infused_ingot.png rename to static/browse/thermal_expansion/images/mana_infused_ingot.png diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/mana_infused_nugget.png b/static/browse/thermal_expansion/images/mana_infused_nugget.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/mana_infused_nugget.png rename to static/browse/thermal_expansion/images/mana_infused_nugget.png diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/mana_infused_ore.png b/static/browse/thermal_expansion/images/mana_infused_ore.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/mana_infused_ore.png rename to static/browse/thermal_expansion/images/mana_infused_ore.png diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/multimeter.png b/static/browse/thermal_expansion/images/multimeter.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/multimeter.png rename to static/browse/thermal_expansion/images/multimeter.png diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/niter.png b/static/browse/thermal_expansion/images/niter.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/niter.png rename to static/browse/thermal_expansion/images/niter.png diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/nullifier.png b/static/browse/thermal_expansion/images/nullifier.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/nullifier.png rename to static/browse/thermal_expansion/images/nullifier.png diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/orange_rockwool.png b/static/browse/thermal_expansion/images/orange_rockwool.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/orange_rockwool.png rename to static/browse/thermal_expansion/images/orange_rockwool.png diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/pink_rockwool.png b/static/browse/thermal_expansion/images/pink_rockwool.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/pink_rockwool.png rename to static/browse/thermal_expansion/images/pink_rockwool.png diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/plate.png b/static/browse/thermal_expansion/images/plate.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/plate.png rename to static/browse/thermal_expansion/images/plate.png diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/pneumatic_servo.png b/static/browse/thermal_expansion/images/pneumatic_servo.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/pneumatic_servo.png rename to static/browse/thermal_expansion/images/pneumatic_servo.png diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/portable_tank.png b/static/browse/thermal_expansion/images/portable_tank.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/portable_tank.png rename to static/browse/thermal_expansion/images/portable_tank.png diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/primal_mana_bucket.png b/static/browse/thermal_expansion/images/primal_mana_bucket.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/primal_mana_bucket.png rename to static/browse/thermal_expansion/images/primal_mana_bucket.png diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/pulverized_charcoal.png b/static/browse/thermal_expansion/images/pulverized_charcoal.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/pulverized_charcoal.png rename to static/browse/thermal_expansion/images/pulverized_charcoal.png diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/pulverized_coal.png b/static/browse/thermal_expansion/images/pulverized_coal.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/pulverized_coal.png rename to static/browse/thermal_expansion/images/pulverized_coal.png diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/pulverized_copper.png b/static/browse/thermal_expansion/images/pulverized_copper.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/pulverized_copper.png rename to static/browse/thermal_expansion/images/pulverized_copper.png diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/pulverized_ferrous_metal.png b/static/browse/thermal_expansion/images/pulverized_ferrous_metal.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/pulverized_ferrous_metal.png rename to static/browse/thermal_expansion/images/pulverized_ferrous_metal.png diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/pulverized_gold.png b/static/browse/thermal_expansion/images/pulverized_gold.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/pulverized_gold.png rename to static/browse/thermal_expansion/images/pulverized_gold.png diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/pulverized_iron.png b/static/browse/thermal_expansion/images/pulverized_iron.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/pulverized_iron.png rename to static/browse/thermal_expansion/images/pulverized_iron.png diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/pulverized_lead.png b/static/browse/thermal_expansion/images/pulverized_lead.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/pulverized_lead.png rename to static/browse/thermal_expansion/images/pulverized_lead.png diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/pulverized_mana_infused_metal.png b/static/browse/thermal_expansion/images/pulverized_mana_infused_metal.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/pulverized_mana_infused_metal.png rename to static/browse/thermal_expansion/images/pulverized_mana_infused_metal.png diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/pulverized_obsidian.png b/static/browse/thermal_expansion/images/pulverized_obsidian.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/pulverized_obsidian.png rename to static/browse/thermal_expansion/images/pulverized_obsidian.png diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/pulverized_shiny_metal.png b/static/browse/thermal_expansion/images/pulverized_shiny_metal.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/pulverized_shiny_metal.png rename to static/browse/thermal_expansion/images/pulverized_shiny_metal.png diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/pulverized_silver.png b/static/browse/thermal_expansion/images/pulverized_silver.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/pulverized_silver.png rename to static/browse/thermal_expansion/images/pulverized_silver.png diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/pulverized_tin.png b/static/browse/thermal_expansion/images/pulverized_tin.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/pulverized_tin.png rename to static/browse/thermal_expansion/images/pulverized_tin.png diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/pulverizer.png b/static/browse/thermal_expansion/images/pulverizer.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/pulverizer.png rename to static/browse/thermal_expansion/images/pulverizer.png diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/pulverizer_hardened.png b/static/browse/thermal_expansion/images/pulverizer_hardened.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/pulverizer_hardened.png rename to static/browse/thermal_expansion/images/pulverizer_hardened.png diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/pulverizer_reinforced.png b/static/browse/thermal_expansion/images/pulverizer_reinforced.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/pulverizer_reinforced.png rename to static/browse/thermal_expansion/images/pulverizer_reinforced.png diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/pulverizer_resonant.png b/static/browse/thermal_expansion/images/pulverizer_resonant.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/pulverizer_resonant.png rename to static/browse/thermal_expansion/images/pulverizer_resonant.png diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/purple_rockwool.png b/static/browse/thermal_expansion/images/purple_rockwool.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/purple_rockwool.png rename to static/browse/thermal_expansion/images/purple_rockwool.png diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/pyrotheum_dust.png b/static/browse/thermal_expansion/images/pyrotheum_dust.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/pyrotheum_dust.png rename to static/browse/thermal_expansion/images/pyrotheum_dust.png diff --git a/static/browse/thermal_expansion/images/radiant_lumium_lamp.png b/static/browse/thermal_expansion/images/radiant_lumium_lamp.png new file mode 100644 index 000000000..684403222 Binary files /dev/null and b/static/browse/thermal_expansion/images/radiant_lumium_lamp.png differ diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/reactant_dynamo.png b/static/browse/thermal_expansion/images/reactant_dynamo.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/reactant_dynamo.png rename to static/browse/thermal_expansion/images/reactant_dynamo.png diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/red_rockwool.png b/static/browse/thermal_expansion/images/red_rockwool.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/red_rockwool.png rename to static/browse/thermal_expansion/images/red_rockwool.png diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/redprint.png b/static/browse/thermal_expansion/images/redprint.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/redprint.png rename to static/browse/thermal_expansion/images/redprint.png diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/redstone_conductance_coil.png b/static/browse/thermal_expansion/images/redstone_conductance_coil.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/redstone_conductance_coil.png rename to static/browse/thermal_expansion/images/redstone_conductance_coil.png diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/redstone_energy_cell.png b/static/browse/thermal_expansion/images/redstone_energy_cell.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/redstone_energy_cell.png rename to static/browse/thermal_expansion/images/redstone_energy_cell.png diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/redstone_energy_cell_frame_empty.png b/static/browse/thermal_expansion/images/redstone_energy_cell_frame_empty.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/redstone_energy_cell_frame_empty.png rename to static/browse/thermal_expansion/images/redstone_energy_cell_frame_empty.png diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/redstone_energy_cell_frame_full.png b/static/browse/thermal_expansion/images/redstone_energy_cell_frame_full.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/redstone_energy_cell_frame_full.png rename to static/browse/thermal_expansion/images/redstone_energy_cell_frame_full.png diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/redstone_flux_capacitor.png b/static/browse/thermal_expansion/images/redstone_flux_capacitor.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/redstone_flux_capacitor.png rename to static/browse/thermal_expansion/images/redstone_flux_capacitor.png diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/redstone_furnace.png b/static/browse/thermal_expansion/images/redstone_furnace.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/redstone_furnace.png rename to static/browse/thermal_expansion/images/redstone_furnace.png diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/redstone_furnace_hardened.png b/static/browse/thermal_expansion/images/redstone_furnace_hardened.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/redstone_furnace_hardened.png rename to static/browse/thermal_expansion/images/redstone_furnace_hardened.png diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/redstone_furnace_reinforced.png b/static/browse/thermal_expansion/images/redstone_furnace_reinforced.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/redstone_furnace_reinforced.png rename to static/browse/thermal_expansion/images/redstone_furnace_reinforced.png diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/redstone_furnace_resonant.png b/static/browse/thermal_expansion/images/redstone_furnace_resonant.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/redstone_furnace_resonant.png rename to static/browse/thermal_expansion/images/redstone_furnace_resonant.png diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/redstone_plate.png b/static/browse/thermal_expansion/images/redstone_plate.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/redstone_plate.png rename to static/browse/thermal_expansion/images/redstone_plate.png diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/redstone_reception_coil.png b/static/browse/thermal_expansion/images/redstone_reception_coil.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/redstone_reception_coil.png rename to static/browse/thermal_expansion/images/redstone_reception_coil.png diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/redstone_transmission_coil.png b/static/browse/thermal_expansion/images/redstone_transmission_coil.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/redstone_transmission_coil.png rename to static/browse/thermal_expansion/images/redstone_transmission_coil.png diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/reinforced_cache.png b/static/browse/thermal_expansion/images/reinforced_cache.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/reinforced_cache.png rename to static/browse/thermal_expansion/images/reinforced_cache.png diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/reinforced_portable_tank.png b/static/browse/thermal_expansion/images/reinforced_portable_tank.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/reinforced_portable_tank.png rename to static/browse/thermal_expansion/images/reinforced_portable_tank.png diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/reinforced_satchel.png b/static/browse/thermal_expansion/images/reinforced_satchel.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/reinforced_satchel.png rename to static/browse/thermal_expansion/images/reinforced_satchel.png diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/reinforced_strongbox.png b/static/browse/thermal_expansion/images/reinforced_strongbox.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/reinforced_strongbox.png rename to static/browse/thermal_expansion/images/reinforced_strongbox.png diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/resonant_cache.png b/static/browse/thermal_expansion/images/resonant_cache.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/resonant_cache.png rename to static/browse/thermal_expansion/images/resonant_cache.png diff --git a/static/browse/thermal_expansion/images/resonant_ender.png b/static/browse/thermal_expansion/images/resonant_ender.png new file mode 100644 index 000000000..68948a736 Binary files /dev/null and b/static/browse/thermal_expansion/images/resonant_ender.png differ diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/resonant_ender_bucket.png b/static/browse/thermal_expansion/images/resonant_ender_bucket.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/resonant_ender_bucket.png rename to static/browse/thermal_expansion/images/resonant_ender_bucket.png diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/resonant_energy_cell.png b/static/browse/thermal_expansion/images/resonant_energy_cell.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/resonant_energy_cell.png rename to static/browse/thermal_expansion/images/resonant_energy_cell.png diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/resonant_flux_capacitor.png b/static/browse/thermal_expansion/images/resonant_flux_capacitor.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/resonant_flux_capacitor.png rename to static/browse/thermal_expansion/images/resonant_flux_capacitor.png diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/resonant_portable_tank.png b/static/browse/thermal_expansion/images/resonant_portable_tank.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/resonant_portable_tank.png rename to static/browse/thermal_expansion/images/resonant_portable_tank.png diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/resonant_satchel.png b/static/browse/thermal_expansion/images/resonant_satchel.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/resonant_satchel.png rename to static/browse/thermal_expansion/images/resonant_satchel.png diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/resonant_strongbox.png b/static/browse/thermal_expansion/images/resonant_strongbox.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/resonant_strongbox.png rename to static/browse/thermal_expansion/images/resonant_strongbox.png diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/rich_slag.png b/static/browse/thermal_expansion/images/rich_slag.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/rich_slag.png rename to static/browse/thermal_expansion/images/rich_slag.png diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/satchel.png b/static/browse/thermal_expansion/images/satchel.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/satchel.png rename to static/browse/thermal_expansion/images/satchel.png diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/sawdust.png b/static/browse/thermal_expansion/images/sawdust.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/sawdust.png rename to static/browse/thermal_expansion/images/sawdust.png diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/sawmill.png b/static/browse/thermal_expansion/images/sawmill.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/sawmill.png rename to static/browse/thermal_expansion/images/sawmill.png diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/sawmill_hardened.png b/static/browse/thermal_expansion/images/sawmill_hardened.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/sawmill_hardened.png rename to static/browse/thermal_expansion/images/sawmill_hardened.png diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/sawmill_reinforced.png b/static/browse/thermal_expansion/images/sawmill_reinforced.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/sawmill_reinforced.png rename to static/browse/thermal_expansion/images/sawmill_reinforced.png diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/sawmill_resonant.png b/static/browse/thermal_expansion/images/sawmill_resonant.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/sawmill_resonant.png rename to static/browse/thermal_expansion/images/sawmill_resonant.png diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/schematic.png b/static/browse/thermal_expansion/images/schematic.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/schematic.png rename to static/browse/thermal_expansion/images/schematic.png diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/shiny_block.png b/static/browse/thermal_expansion/images/shiny_block.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/shiny_block.png rename to static/browse/thermal_expansion/images/shiny_block.png diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/shiny_gear.png b/static/browse/thermal_expansion/images/shiny_gear.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/shiny_gear.png rename to static/browse/thermal_expansion/images/shiny_gear.png diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/shiny_ingot.png b/static/browse/thermal_expansion/images/shiny_ingot.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/shiny_ingot.png rename to static/browse/thermal_expansion/images/shiny_ingot.png diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/shiny_nugget.png b/static/browse/thermal_expansion/images/shiny_nugget.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/shiny_nugget.png rename to static/browse/thermal_expansion/images/shiny_nugget.png diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/shiny_ore.png b/static/browse/thermal_expansion/images/shiny_ore.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/shiny_ore.png rename to static/browse/thermal_expansion/images/shiny_ore.png diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/signalum_blend.png b/static/browse/thermal_expansion/images/signalum_blend.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/signalum_blend.png rename to static/browse/thermal_expansion/images/signalum_blend.png diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/signalum_block.png b/static/browse/thermal_expansion/images/signalum_block.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/signalum_block.png rename to static/browse/thermal_expansion/images/signalum_block.png diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/signalum_gear.png b/static/browse/thermal_expansion/images/signalum_gear.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/signalum_gear.png rename to static/browse/thermal_expansion/images/signalum_gear.png diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/signalum_ingot.png b/static/browse/thermal_expansion/images/signalum_ingot.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/signalum_ingot.png rename to static/browse/thermal_expansion/images/signalum_ingot.png diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/signalum_nugget.png b/static/browse/thermal_expansion/images/signalum_nugget.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/signalum_nugget.png rename to static/browse/thermal_expansion/images/signalum_nugget.png diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/signalum_security_lock.png b/static/browse/thermal_expansion/images/signalum_security_lock.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/signalum_security_lock.png rename to static/browse/thermal_expansion/images/signalum_security_lock.png diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/silver_block.png b/static/browse/thermal_expansion/images/silver_block.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/silver_block.png rename to static/browse/thermal_expansion/images/silver_block.png diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/silver_gear.png b/static/browse/thermal_expansion/images/silver_gear.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/silver_gear.png rename to static/browse/thermal_expansion/images/silver_gear.png diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/silver_ingot.png b/static/browse/thermal_expansion/images/silver_ingot.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/silver_ingot.png rename to static/browse/thermal_expansion/images/silver_ingot.png diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/silver_nugget.png b/static/browse/thermal_expansion/images/silver_nugget.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/silver_nugget.png rename to static/browse/thermal_expansion/images/silver_nugget.png diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/silver_ore.png b/static/browse/thermal_expansion/images/silver_ore.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/silver_ore.png rename to static/browse/thermal_expansion/images/silver_ore.png diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/slag.png b/static/browse/thermal_expansion/images/slag.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/slag.png rename to static/browse/thermal_expansion/images/slag.png diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/steam.png b/static/browse/thermal_expansion/images/steam.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/steam.png rename to static/browse/thermal_expansion/images/steam.png diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/steam_dynamo.png b/static/browse/thermal_expansion/images/steam_dynamo.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/steam_dynamo.png rename to static/browse/thermal_expansion/images/steam_dynamo.png diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/strongbox.png b/static/browse/thermal_expansion/images/strongbox.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/strongbox.png rename to static/browse/thermal_expansion/images/strongbox.png diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/sulfur.png b/static/browse/thermal_expansion/images/sulfur.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/sulfur.png rename to static/browse/thermal_expansion/images/sulfur.png diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/terrain_smasher.png b/static/browse/thermal_expansion/images/terrain_smasher.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/terrain_smasher.png rename to static/browse/thermal_expansion/images/terrain_smasher.png diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/tesseract.png b/static/browse/thermal_expansion/images/tesseract.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/tesseract.png rename to static/browse/thermal_expansion/images/tesseract.png diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/tesseract_frame_empty.png b/static/browse/thermal_expansion/images/tesseract_frame_empty.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/tesseract_frame_empty.png rename to static/browse/thermal_expansion/images/tesseract_frame_empty.png diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/tesseract_frame_full.png b/static/browse/thermal_expansion/images/tesseract_frame_full.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/tesseract_frame_full.png rename to static/browse/thermal_expansion/images/tesseract_frame_full.png diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/tin_block.png b/static/browse/thermal_expansion/images/tin_block.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/tin_block.png rename to static/browse/thermal_expansion/images/tin_block.png diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/tin_gear.png b/static/browse/thermal_expansion/images/tin_gear.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/tin_gear.png rename to static/browse/thermal_expansion/images/tin_gear.png diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/tin_ingot.png b/static/browse/thermal_expansion/images/tin_ingot.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/tin_ingot.png rename to static/browse/thermal_expansion/images/tin_ingot.png diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/tin_nugget.png b/static/browse/thermal_expansion/images/tin_nugget.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/tin_nugget.png rename to static/browse/thermal_expansion/images/tin_nugget.png diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/tin_ore.png b/static/browse/thermal_expansion/images/tin_ore.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/tin_ore.png rename to static/browse/thermal_expansion/images/tin_ore.png diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/tinker_s_alloy_blend.png b/static/browse/thermal_expansion/images/tinker_s_alloy_blend.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/tinker_s_alloy_blend.png rename to static/browse/thermal_expansion/images/tinker_s_alloy_blend.png diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/tinker_s_alloy_block.png b/static/browse/thermal_expansion/images/tinker_s_alloy_block.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/tinker_s_alloy_block.png rename to static/browse/thermal_expansion/images/tinker_s_alloy_block.png diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/tinker_s_alloy_gear.png b/static/browse/thermal_expansion/images/tinker_s_alloy_gear.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/tinker_s_alloy_gear.png rename to static/browse/thermal_expansion/images/tinker_s_alloy_gear.png diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/tinker_s_alloy_ingot.png b/static/browse/thermal_expansion/images/tinker_s_alloy_ingot.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/tinker_s_alloy_ingot.png rename to static/browse/thermal_expansion/images/tinker_s_alloy_ingot.png diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/tinker_s_alloy_nugget.png b/static/browse/thermal_expansion/images/tinker_s_alloy_nugget.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/tinker_s_alloy_nugget.png rename to static/browse/thermal_expansion/images/tinker_s_alloy_nugget.png diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/translocation_plate.png b/static/browse/thermal_expansion/images/translocation_plate.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/translocation_plate.png rename to static/browse/thermal_expansion/images/translocation_plate.png diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/tuberous_flux_capacitor.png b/static/browse/thermal_expansion/images/tuberous_flux_capacitor.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/tuberous_flux_capacitor.png rename to static/browse/thermal_expansion/images/tuberous_flux_capacitor.png diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/white_rockwool.png b/static/browse/thermal_expansion/images/white_rockwool.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/white_rockwool.png rename to static/browse/thermal_expansion/images/white_rockwool.png diff --git a/src/data/thermal_expansion/4.0.0B8-23/images/yellow_rockwool.png b/static/browse/thermal_expansion/images/yellow_rockwool.png similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/images/yellow_rockwool.png rename to static/browse/thermal_expansion/images/yellow_rockwool.png diff --git a/static/browse/thermal_expansion/impluse_plate/icon.png b/static/browse/thermal_expansion/impluse_plate/icon.png new file mode 100644 index 000000000..b097c7d2f Binary files /dev/null and b/static/browse/thermal_expansion/impluse_plate/icon.png differ diff --git a/prerender/browse/thermal_expansion/impluse_plate/index.html b/static/browse/thermal_expansion/impluse_plate/index.html similarity index 100% rename from prerender/browse/thermal_expansion/impluse_plate/index.html rename to static/browse/thermal_expansion/impluse_plate/index.html diff --git a/prerender/browse/thermal_expansion/index.html b/static/browse/thermal_expansion/index.html similarity index 100% rename from prerender/browse/thermal_expansion/index.html rename to static/browse/thermal_expansion/index.html diff --git a/static/browse/thermal_expansion/induction_smelter/icon.png b/static/browse/thermal_expansion/induction_smelter/icon.png new file mode 100644 index 000000000..4b2d02212 Binary files /dev/null and b/static/browse/thermal_expansion/induction_smelter/icon.png differ diff --git a/prerender/browse/thermal_expansion/induction_smelter/index.html b/static/browse/thermal_expansion/induction_smelter/index.html similarity index 100% rename from prerender/browse/thermal_expansion/induction_smelter/index.html rename to static/browse/thermal_expansion/induction_smelter/index.html diff --git a/static/browse/thermal_expansion/induction_smelter_hardened/icon.png b/static/browse/thermal_expansion/induction_smelter_hardened/icon.png new file mode 100644 index 000000000..4b2d02212 Binary files /dev/null and b/static/browse/thermal_expansion/induction_smelter_hardened/icon.png differ diff --git a/prerender/browse/thermal_expansion/induction_smelter_hardened/index.html b/static/browse/thermal_expansion/induction_smelter_hardened/index.html similarity index 100% rename from prerender/browse/thermal_expansion/induction_smelter_hardened/index.html rename to static/browse/thermal_expansion/induction_smelter_hardened/index.html diff --git a/static/browse/thermal_expansion/induction_smelter_reinforced/icon.png b/static/browse/thermal_expansion/induction_smelter_reinforced/icon.png new file mode 100644 index 000000000..4b2d02212 Binary files /dev/null and b/static/browse/thermal_expansion/induction_smelter_reinforced/icon.png differ diff --git a/prerender/browse/thermal_expansion/induction_smelter_reinforced/index.html b/static/browse/thermal_expansion/induction_smelter_reinforced/index.html similarity index 100% rename from prerender/browse/thermal_expansion/induction_smelter_reinforced/index.html rename to static/browse/thermal_expansion/induction_smelter_reinforced/index.html diff --git a/static/browse/thermal_expansion/induction_smelter_resonant/icon.png b/static/browse/thermal_expansion/induction_smelter_resonant/icon.png new file mode 100644 index 000000000..4b2d02212 Binary files /dev/null and b/static/browse/thermal_expansion/induction_smelter_resonant/icon.png differ diff --git a/prerender/browse/thermal_expansion/induction_smelter_resonant/index.html b/static/browse/thermal_expansion/induction_smelter_resonant/index.html similarity index 100% rename from prerender/browse/thermal_expansion/induction_smelter_resonant/index.html rename to static/browse/thermal_expansion/induction_smelter_resonant/index.html diff --git a/static/browse/thermal_expansion/invar_axe/icon.png b/static/browse/thermal_expansion/invar_axe/icon.png new file mode 100644 index 000000000..f9f9e13d4 Binary files /dev/null and b/static/browse/thermal_expansion/invar_axe/icon.png differ diff --git a/prerender/browse/thermal_expansion/invar_axe/index.html b/static/browse/thermal_expansion/invar_axe/index.html similarity index 100% rename from prerender/browse/thermal_expansion/invar_axe/index.html rename to static/browse/thermal_expansion/invar_axe/index.html diff --git a/static/browse/thermal_expansion/invar_battlewrench/icon.png b/static/browse/thermal_expansion/invar_battlewrench/icon.png new file mode 100644 index 000000000..a188f12b5 Binary files /dev/null and b/static/browse/thermal_expansion/invar_battlewrench/icon.png differ diff --git a/prerender/browse/thermal_expansion/invar_battlewrench/index.html b/static/browse/thermal_expansion/invar_battlewrench/index.html similarity index 100% rename from prerender/browse/thermal_expansion/invar_battlewrench/index.html rename to static/browse/thermal_expansion/invar_battlewrench/index.html diff --git a/static/browse/thermal_expansion/invar_blend/icon.png b/static/browse/thermal_expansion/invar_blend/icon.png new file mode 100644 index 000000000..4c1235f8d Binary files /dev/null and b/static/browse/thermal_expansion/invar_blend/icon.png differ diff --git a/prerender/browse/thermal_expansion/invar_blend/index.html b/static/browse/thermal_expansion/invar_blend/index.html similarity index 100% rename from prerender/browse/thermal_expansion/invar_blend/index.html rename to static/browse/thermal_expansion/invar_blend/index.html diff --git a/static/browse/thermal_expansion/invar_block/icon.png b/static/browse/thermal_expansion/invar_block/icon.png new file mode 100644 index 000000000..5fb928180 Binary files /dev/null and b/static/browse/thermal_expansion/invar_block/icon.png differ diff --git a/prerender/browse/thermal_expansion/invar_block/index.html b/static/browse/thermal_expansion/invar_block/index.html similarity index 100% rename from prerender/browse/thermal_expansion/invar_block/index.html rename to static/browse/thermal_expansion/invar_block/index.html diff --git a/static/browse/thermal_expansion/invar_boots/icon.png b/static/browse/thermal_expansion/invar_boots/icon.png new file mode 100644 index 000000000..a74120efa Binary files /dev/null and b/static/browse/thermal_expansion/invar_boots/icon.png differ diff --git a/prerender/browse/thermal_expansion/invar_boots/index.html b/static/browse/thermal_expansion/invar_boots/index.html similarity index 100% rename from prerender/browse/thermal_expansion/invar_boots/index.html rename to static/browse/thermal_expansion/invar_boots/index.html diff --git a/static/browse/thermal_expansion/invar_chestplate/icon.png b/static/browse/thermal_expansion/invar_chestplate/icon.png new file mode 100644 index 000000000..e327b958d Binary files /dev/null and b/static/browse/thermal_expansion/invar_chestplate/icon.png differ diff --git a/prerender/browse/thermal_expansion/invar_chestplate/index.html b/static/browse/thermal_expansion/invar_chestplate/index.html similarity index 100% rename from prerender/browse/thermal_expansion/invar_chestplate/index.html rename to static/browse/thermal_expansion/invar_chestplate/index.html diff --git a/static/browse/thermal_expansion/invar_gear/icon.png b/static/browse/thermal_expansion/invar_gear/icon.png new file mode 100644 index 000000000..fb766cbbb Binary files /dev/null and b/static/browse/thermal_expansion/invar_gear/icon.png differ diff --git a/prerender/browse/thermal_expansion/invar_gear/index.html b/static/browse/thermal_expansion/invar_gear/index.html similarity index 100% rename from prerender/browse/thermal_expansion/invar_gear/index.html rename to static/browse/thermal_expansion/invar_gear/index.html diff --git a/static/browse/thermal_expansion/invar_helmet/icon.png b/static/browse/thermal_expansion/invar_helmet/icon.png new file mode 100644 index 000000000..6b03bc5cc Binary files /dev/null and b/static/browse/thermal_expansion/invar_helmet/icon.png differ diff --git a/prerender/browse/thermal_expansion/invar_helmet/index.html b/static/browse/thermal_expansion/invar_helmet/index.html similarity index 100% rename from prerender/browse/thermal_expansion/invar_helmet/index.html rename to static/browse/thermal_expansion/invar_helmet/index.html diff --git a/static/browse/thermal_expansion/invar_hoe/icon.png b/static/browse/thermal_expansion/invar_hoe/icon.png new file mode 100644 index 000000000..7468adca3 Binary files /dev/null and b/static/browse/thermal_expansion/invar_hoe/icon.png differ diff --git a/prerender/browse/thermal_expansion/invar_hoe/index.html b/static/browse/thermal_expansion/invar_hoe/index.html similarity index 100% rename from prerender/browse/thermal_expansion/invar_hoe/index.html rename to static/browse/thermal_expansion/invar_hoe/index.html diff --git a/static/browse/thermal_expansion/invar_ingot/icon.png b/static/browse/thermal_expansion/invar_ingot/icon.png new file mode 100644 index 000000000..820f281f7 Binary files /dev/null and b/static/browse/thermal_expansion/invar_ingot/icon.png differ diff --git a/prerender/browse/thermal_expansion/invar_ingot/index.html b/static/browse/thermal_expansion/invar_ingot/index.html similarity index 100% rename from prerender/browse/thermal_expansion/invar_ingot/index.html rename to static/browse/thermal_expansion/invar_ingot/index.html diff --git a/static/browse/thermal_expansion/invar_leggings/icon.png b/static/browse/thermal_expansion/invar_leggings/icon.png new file mode 100644 index 000000000..5d3f9d35f Binary files /dev/null and b/static/browse/thermal_expansion/invar_leggings/icon.png differ diff --git a/prerender/browse/thermal_expansion/invar_leggings/index.html b/static/browse/thermal_expansion/invar_leggings/index.html similarity index 100% rename from prerender/browse/thermal_expansion/invar_leggings/index.html rename to static/browse/thermal_expansion/invar_leggings/index.html diff --git a/static/browse/thermal_expansion/invar_nugget/icon.png b/static/browse/thermal_expansion/invar_nugget/icon.png new file mode 100644 index 000000000..07b9417d5 Binary files /dev/null and b/static/browse/thermal_expansion/invar_nugget/icon.png differ diff --git a/prerender/browse/thermal_expansion/invar_nugget/index.html b/static/browse/thermal_expansion/invar_nugget/index.html similarity index 100% rename from prerender/browse/thermal_expansion/invar_nugget/index.html rename to static/browse/thermal_expansion/invar_nugget/index.html diff --git a/static/browse/thermal_expansion/invar_pickaxe/icon.png b/static/browse/thermal_expansion/invar_pickaxe/icon.png new file mode 100644 index 000000000..63cba54f3 Binary files /dev/null and b/static/browse/thermal_expansion/invar_pickaxe/icon.png differ diff --git a/prerender/browse/thermal_expansion/invar_pickaxe/index.html b/static/browse/thermal_expansion/invar_pickaxe/index.html similarity index 100% rename from prerender/browse/thermal_expansion/invar_pickaxe/index.html rename to static/browse/thermal_expansion/invar_pickaxe/index.html diff --git a/static/browse/thermal_expansion/invar_reinforced_bow/icon.png b/static/browse/thermal_expansion/invar_reinforced_bow/icon.png new file mode 100644 index 000000000..e26f5bb94 Binary files /dev/null and b/static/browse/thermal_expansion/invar_reinforced_bow/icon.png differ diff --git a/prerender/browse/thermal_expansion/invar_reinforced_bow/index.html b/static/browse/thermal_expansion/invar_reinforced_bow/index.html similarity index 100% rename from prerender/browse/thermal_expansion/invar_reinforced_bow/index.html rename to static/browse/thermal_expansion/invar_reinforced_bow/index.html diff --git a/static/browse/thermal_expansion/invar_reinforced_fishing_rod/icon.png b/static/browse/thermal_expansion/invar_reinforced_fishing_rod/icon.png new file mode 100644 index 000000000..9accbed1f Binary files /dev/null and b/static/browse/thermal_expansion/invar_reinforced_fishing_rod/icon.png differ diff --git a/prerender/browse/thermal_expansion/invar_reinforced_fishing_rod/index.html b/static/browse/thermal_expansion/invar_reinforced_fishing_rod/index.html similarity index 100% rename from prerender/browse/thermal_expansion/invar_reinforced_fishing_rod/index.html rename to static/browse/thermal_expansion/invar_reinforced_fishing_rod/index.html diff --git a/static/browse/thermal_expansion/invar_shears/icon.png b/static/browse/thermal_expansion/invar_shears/icon.png new file mode 100644 index 000000000..820c853f4 Binary files /dev/null and b/static/browse/thermal_expansion/invar_shears/icon.png differ diff --git a/prerender/browse/thermal_expansion/invar_shears/index.html b/static/browse/thermal_expansion/invar_shears/index.html similarity index 100% rename from prerender/browse/thermal_expansion/invar_shears/index.html rename to static/browse/thermal_expansion/invar_shears/index.html diff --git a/static/browse/thermal_expansion/invar_shovel/icon.png b/static/browse/thermal_expansion/invar_shovel/icon.png new file mode 100644 index 000000000..8e75814b1 Binary files /dev/null and b/static/browse/thermal_expansion/invar_shovel/icon.png differ diff --git a/prerender/browse/thermal_expansion/invar_shovel/index.html b/static/browse/thermal_expansion/invar_shovel/index.html similarity index 100% rename from prerender/browse/thermal_expansion/invar_shovel/index.html rename to static/browse/thermal_expansion/invar_shovel/index.html diff --git a/static/browse/thermal_expansion/invar_sickle/icon.png b/static/browse/thermal_expansion/invar_sickle/icon.png new file mode 100644 index 000000000..9c4b87155 Binary files /dev/null and b/static/browse/thermal_expansion/invar_sickle/icon.png differ diff --git a/prerender/browse/thermal_expansion/invar_sickle/index.html b/static/browse/thermal_expansion/invar_sickle/index.html similarity index 100% rename from prerender/browse/thermal_expansion/invar_sickle/index.html rename to static/browse/thermal_expansion/invar_sickle/index.html diff --git a/static/browse/thermal_expansion/invar_sword/icon.png b/static/browse/thermal_expansion/invar_sword/icon.png new file mode 100644 index 000000000..1f8ebdf79 Binary files /dev/null and b/static/browse/thermal_expansion/invar_sword/icon.png differ diff --git a/prerender/browse/thermal_expansion/invar_sword/index.html b/static/browse/thermal_expansion/invar_sword/index.html similarity index 100% rename from prerender/browse/thermal_expansion/invar_sword/index.html rename to static/browse/thermal_expansion/invar_sword/index.html diff --git a/static/browse/thermal_expansion/iron_gear/icon.png b/static/browse/thermal_expansion/iron_gear/icon.png new file mode 100644 index 000000000..6cc4f7ae2 Binary files /dev/null and b/static/browse/thermal_expansion/iron_gear/icon.png differ diff --git a/prerender/browse/thermal_expansion/iron_gear/index.html b/static/browse/thermal_expansion/iron_gear/index.html similarity index 100% rename from prerender/browse/thermal_expansion/iron_gear/index.html rename to static/browse/thermal_expansion/iron_gear/index.html diff --git a/static/browse/thermal_expansion/iron_nugget/icon.png b/static/browse/thermal_expansion/iron_nugget/icon.png new file mode 100644 index 000000000..03289307d Binary files /dev/null and b/static/browse/thermal_expansion/iron_nugget/icon.png differ diff --git a/prerender/browse/thermal_expansion/iron_nugget/index.html b/static/browse/thermal_expansion/iron_nugget/index.html similarity index 100% rename from prerender/browse/thermal_expansion/iron_nugget/index.html rename to static/browse/thermal_expansion/iron_nugget/index.html diff --git a/static/browse/thermal_expansion/lead_block/icon.png b/static/browse/thermal_expansion/lead_block/icon.png new file mode 100644 index 000000000..a43525324 Binary files /dev/null and b/static/browse/thermal_expansion/lead_block/icon.png differ diff --git a/prerender/browse/thermal_expansion/lead_block/index.html b/static/browse/thermal_expansion/lead_block/index.html similarity index 100% rename from prerender/browse/thermal_expansion/lead_block/index.html rename to static/browse/thermal_expansion/lead_block/index.html diff --git a/static/browse/thermal_expansion/lead_gear/icon.png b/static/browse/thermal_expansion/lead_gear/icon.png new file mode 100644 index 000000000..4a83ec743 Binary files /dev/null and b/static/browse/thermal_expansion/lead_gear/icon.png differ diff --git a/prerender/browse/thermal_expansion/lead_gear/index.html b/static/browse/thermal_expansion/lead_gear/index.html similarity index 100% rename from prerender/browse/thermal_expansion/lead_gear/index.html rename to static/browse/thermal_expansion/lead_gear/index.html diff --git a/static/browse/thermal_expansion/lead_ingot/icon.png b/static/browse/thermal_expansion/lead_ingot/icon.png new file mode 100644 index 000000000..52bf7d202 Binary files /dev/null and b/static/browse/thermal_expansion/lead_ingot/icon.png differ diff --git a/prerender/browse/thermal_expansion/lead_ingot/index.html b/static/browse/thermal_expansion/lead_ingot/index.html similarity index 100% rename from prerender/browse/thermal_expansion/lead_ingot/index.html rename to static/browse/thermal_expansion/lead_ingot/index.html diff --git a/static/browse/thermal_expansion/lead_nugget/icon.png b/static/browse/thermal_expansion/lead_nugget/icon.png new file mode 100644 index 000000000..4a19bb07d Binary files /dev/null and b/static/browse/thermal_expansion/lead_nugget/icon.png differ diff --git a/prerender/browse/thermal_expansion/lead_nugget/index.html b/static/browse/thermal_expansion/lead_nugget/index.html similarity index 100% rename from prerender/browse/thermal_expansion/lead_nugget/index.html rename to static/browse/thermal_expansion/lead_nugget/index.html diff --git a/static/browse/thermal_expansion/lead_ore/icon.png b/static/browse/thermal_expansion/lead_ore/icon.png new file mode 100644 index 000000000..811020081 Binary files /dev/null and b/static/browse/thermal_expansion/lead_ore/icon.png differ diff --git a/prerender/browse/thermal_expansion/lead_ore/index.html b/static/browse/thermal_expansion/lead_ore/index.html similarity index 100% rename from prerender/browse/thermal_expansion/lead_ore/index.html rename to static/browse/thermal_expansion/lead_ore/index.html diff --git a/static/browse/thermal_expansion/leadstone_energy_cell/icon.png b/static/browse/thermal_expansion/leadstone_energy_cell/icon.png new file mode 100644 index 000000000..b2479c142 Binary files /dev/null and b/static/browse/thermal_expansion/leadstone_energy_cell/icon.png differ diff --git a/prerender/browse/thermal_expansion/leadstone_energy_cell/index.html b/static/browse/thermal_expansion/leadstone_energy_cell/index.html similarity index 100% rename from prerender/browse/thermal_expansion/leadstone_energy_cell/index.html rename to static/browse/thermal_expansion/leadstone_energy_cell/index.html diff --git a/static/browse/thermal_expansion/leadstone_energy_cell_frame/icon.png b/static/browse/thermal_expansion/leadstone_energy_cell_frame/icon.png new file mode 100644 index 000000000..5d64e6ba6 Binary files /dev/null and b/static/browse/thermal_expansion/leadstone_energy_cell_frame/icon.png differ diff --git a/prerender/browse/thermal_expansion/leadstone_energy_cell_frame/index.html b/static/browse/thermal_expansion/leadstone_energy_cell_frame/index.html similarity index 100% rename from prerender/browse/thermal_expansion/leadstone_energy_cell_frame/index.html rename to static/browse/thermal_expansion/leadstone_energy_cell_frame/index.html diff --git a/static/browse/thermal_expansion/leadstone_flux_capacitor/icon.png b/static/browse/thermal_expansion/leadstone_flux_capacitor/icon.png new file mode 100644 index 000000000..b06912a0d Binary files /dev/null and b/static/browse/thermal_expansion/leadstone_flux_capacitor/icon.png differ diff --git a/prerender/browse/thermal_expansion/leadstone_flux_capacitor/index.html b/static/browse/thermal_expansion/leadstone_flux_capacitor/index.html similarity index 100% rename from prerender/browse/thermal_expansion/leadstone_flux_capacitor/index.html rename to static/browse/thermal_expansion/leadstone_flux_capacitor/index.html diff --git a/static/browse/thermal_expansion/light_blue_rockwool/icon.png b/static/browse/thermal_expansion/light_blue_rockwool/icon.png new file mode 100644 index 000000000..251db080d Binary files /dev/null and b/static/browse/thermal_expansion/light_blue_rockwool/icon.png differ diff --git a/prerender/browse/thermal_expansion/light_blue_rockwool/index.html b/static/browse/thermal_expansion/light_blue_rockwool/index.html similarity index 100% rename from prerender/browse/thermal_expansion/light_blue_rockwool/index.html rename to static/browse/thermal_expansion/light_blue_rockwool/index.html diff --git a/static/browse/thermal_expansion/light_gray_rockwool/icon.png b/static/browse/thermal_expansion/light_gray_rockwool/icon.png new file mode 100644 index 000000000..2ecd6244b Binary files /dev/null and b/static/browse/thermal_expansion/light_gray_rockwool/icon.png differ diff --git a/prerender/browse/thermal_expansion/light_gray_rockwool/index.html b/static/browse/thermal_expansion/light_gray_rockwool/index.html similarity index 100% rename from prerender/browse/thermal_expansion/light_gray_rockwool/index.html rename to static/browse/thermal_expansion/light_gray_rockwool/index.html diff --git a/static/browse/thermal_expansion/lime_rockwool/icon.png b/static/browse/thermal_expansion/lime_rockwool/icon.png new file mode 100644 index 000000000..4e6b3b834 Binary files /dev/null and b/static/browse/thermal_expansion/lime_rockwool/icon.png differ diff --git a/prerender/browse/thermal_expansion/lime_rockwool/index.html b/static/browse/thermal_expansion/lime_rockwool/index.html similarity index 100% rename from prerender/browse/thermal_expansion/lime_rockwool/index.html rename to static/browse/thermal_expansion/lime_rockwool/index.html diff --git a/static/browse/thermal_expansion/liquifacted_coal_bucket/icon.png b/static/browse/thermal_expansion/liquifacted_coal_bucket/icon.png new file mode 100644 index 000000000..96ce094ce Binary files /dev/null and b/static/browse/thermal_expansion/liquifacted_coal_bucket/icon.png differ diff --git a/prerender/browse/thermal_expansion/liquifacted_coal_bucket/index.html b/static/browse/thermal_expansion/liquifacted_coal_bucket/index.html similarity index 100% rename from prerender/browse/thermal_expansion/liquifacted_coal_bucket/index.html rename to static/browse/thermal_expansion/liquifacted_coal_bucket/index.html diff --git a/static/browse/thermal_expansion/lumium_blend/icon.png b/static/browse/thermal_expansion/lumium_blend/icon.png new file mode 100644 index 000000000..2a1ba7a4f Binary files /dev/null and b/static/browse/thermal_expansion/lumium_blend/icon.png differ diff --git a/prerender/browse/thermal_expansion/lumium_blend/index.html b/static/browse/thermal_expansion/lumium_blend/index.html similarity index 100% rename from prerender/browse/thermal_expansion/lumium_blend/index.html rename to static/browse/thermal_expansion/lumium_blend/index.html diff --git a/static/browse/thermal_expansion/lumium_block/icon.png b/static/browse/thermal_expansion/lumium_block/icon.png new file mode 100644 index 000000000..9a30137d2 Binary files /dev/null and b/static/browse/thermal_expansion/lumium_block/icon.png differ diff --git a/prerender/browse/thermal_expansion/lumium_block/index.html b/static/browse/thermal_expansion/lumium_block/index.html similarity index 100% rename from prerender/browse/thermal_expansion/lumium_block/index.html rename to static/browse/thermal_expansion/lumium_block/index.html diff --git a/static/browse/thermal_expansion/lumium_gear/icon.png b/static/browse/thermal_expansion/lumium_gear/icon.png new file mode 100644 index 000000000..57dd9a05e Binary files /dev/null and b/static/browse/thermal_expansion/lumium_gear/icon.png differ diff --git a/prerender/browse/thermal_expansion/lumium_gear/index.html b/static/browse/thermal_expansion/lumium_gear/index.html similarity index 100% rename from prerender/browse/thermal_expansion/lumium_gear/index.html rename to static/browse/thermal_expansion/lumium_gear/index.html diff --git a/static/browse/thermal_expansion/lumium_ingot/icon.png b/static/browse/thermal_expansion/lumium_ingot/icon.png new file mode 100644 index 000000000..00246d261 Binary files /dev/null and b/static/browse/thermal_expansion/lumium_ingot/icon.png differ diff --git a/prerender/browse/thermal_expansion/lumium_ingot/index.html b/static/browse/thermal_expansion/lumium_ingot/index.html similarity index 100% rename from prerender/browse/thermal_expansion/lumium_ingot/index.html rename to static/browse/thermal_expansion/lumium_ingot/index.html diff --git a/static/browse/thermal_expansion/lumium_lamp/icon.png b/static/browse/thermal_expansion/lumium_lamp/icon.png new file mode 100644 index 000000000..684403222 Binary files /dev/null and b/static/browse/thermal_expansion/lumium_lamp/icon.png differ diff --git a/prerender/browse/thermal_expansion/lumium_lamp/index.html b/static/browse/thermal_expansion/lumium_lamp/index.html similarity index 100% rename from prerender/browse/thermal_expansion/lumium_lamp/index.html rename to static/browse/thermal_expansion/lumium_lamp/index.html diff --git a/static/browse/thermal_expansion/lumium_nugget/icon.png b/static/browse/thermal_expansion/lumium_nugget/icon.png new file mode 100644 index 000000000..6aad97708 Binary files /dev/null and b/static/browse/thermal_expansion/lumium_nugget/icon.png differ diff --git a/prerender/browse/thermal_expansion/lumium_nugget/index.html b/static/browse/thermal_expansion/lumium_nugget/index.html similarity index 100% rename from prerender/browse/thermal_expansion/lumium_nugget/index.html rename to static/browse/thermal_expansion/lumium_nugget/index.html diff --git a/static/browse/thermal_expansion/machine_frame/icon.png b/static/browse/thermal_expansion/machine_frame/icon.png new file mode 100644 index 000000000..976abf952 Binary files /dev/null and b/static/browse/thermal_expansion/machine_frame/icon.png differ diff --git a/prerender/browse/thermal_expansion/machine_frame/index.html b/static/browse/thermal_expansion/machine_frame/index.html similarity index 100% rename from prerender/browse/thermal_expansion/machine_frame/index.html rename to static/browse/thermal_expansion/machine_frame/index.html diff --git a/static/browse/thermal_expansion/machine_frame_hardened/icon.png b/static/browse/thermal_expansion/machine_frame_hardened/icon.png new file mode 100644 index 000000000..0b14c47d3 Binary files /dev/null and b/static/browse/thermal_expansion/machine_frame_hardened/icon.png differ diff --git a/prerender/browse/thermal_expansion/machine_frame_hardened/index.html b/static/browse/thermal_expansion/machine_frame_hardened/index.html similarity index 100% rename from prerender/browse/thermal_expansion/machine_frame_hardened/index.html rename to static/browse/thermal_expansion/machine_frame_hardened/index.html diff --git a/static/browse/thermal_expansion/machine_frame_reinforced/icon.png b/static/browse/thermal_expansion/machine_frame_reinforced/icon.png new file mode 100644 index 000000000..cf952c137 Binary files /dev/null and b/static/browse/thermal_expansion/machine_frame_reinforced/icon.png differ diff --git a/prerender/browse/thermal_expansion/machine_frame_reinforced/index.html b/static/browse/thermal_expansion/machine_frame_reinforced/index.html similarity index 100% rename from prerender/browse/thermal_expansion/machine_frame_reinforced/index.html rename to static/browse/thermal_expansion/machine_frame_reinforced/index.html diff --git a/static/browse/thermal_expansion/machine_frame_resonant/icon.png b/static/browse/thermal_expansion/machine_frame_resonant/icon.png new file mode 100644 index 000000000..04bdc9aae Binary files /dev/null and b/static/browse/thermal_expansion/machine_frame_resonant/icon.png differ diff --git a/prerender/browse/thermal_expansion/machine_frame_resonant/index.html b/static/browse/thermal_expansion/machine_frame_resonant/index.html similarity index 100% rename from prerender/browse/thermal_expansion/machine_frame_resonant/index.html rename to static/browse/thermal_expansion/machine_frame_resonant/index.html diff --git a/static/browse/thermal_expansion/machinist_s_workbench/icon.png b/static/browse/thermal_expansion/machinist_s_workbench/icon.png new file mode 100644 index 000000000..20d2ad455 Binary files /dev/null and b/static/browse/thermal_expansion/machinist_s_workbench/icon.png differ diff --git a/prerender/browse/thermal_expansion/machinist_s_workbench/index.html b/static/browse/thermal_expansion/machinist_s_workbench/index.html similarity index 100% rename from prerender/browse/thermal_expansion/machinist_s_workbench/index.html rename to static/browse/thermal_expansion/machinist_s_workbench/index.html diff --git a/static/browse/thermal_expansion/magenta_rockwool/icon.png b/static/browse/thermal_expansion/magenta_rockwool/icon.png new file mode 100644 index 000000000..5bd9396a1 Binary files /dev/null and b/static/browse/thermal_expansion/magenta_rockwool/icon.png differ diff --git a/prerender/browse/thermal_expansion/magenta_rockwool/index.html b/static/browse/thermal_expansion/magenta_rockwool/index.html similarity index 100% rename from prerender/browse/thermal_expansion/magenta_rockwool/index.html rename to static/browse/thermal_expansion/magenta_rockwool/index.html diff --git a/static/browse/thermal_expansion/magma_crucible/icon.png b/static/browse/thermal_expansion/magma_crucible/icon.png new file mode 100644 index 000000000..9c355d62b Binary files /dev/null and b/static/browse/thermal_expansion/magma_crucible/icon.png differ diff --git a/prerender/browse/thermal_expansion/magma_crucible/index.html b/static/browse/thermal_expansion/magma_crucible/index.html similarity index 100% rename from prerender/browse/thermal_expansion/magma_crucible/index.html rename to static/browse/thermal_expansion/magma_crucible/index.html diff --git a/static/browse/thermal_expansion/magma_crucible_hardened/icon.png b/static/browse/thermal_expansion/magma_crucible_hardened/icon.png new file mode 100644 index 000000000..9c355d62b Binary files /dev/null and b/static/browse/thermal_expansion/magma_crucible_hardened/icon.png differ diff --git a/prerender/browse/thermal_expansion/magma_crucible_hardened/index.html b/static/browse/thermal_expansion/magma_crucible_hardened/index.html similarity index 100% rename from prerender/browse/thermal_expansion/magma_crucible_hardened/index.html rename to static/browse/thermal_expansion/magma_crucible_hardened/index.html diff --git a/static/browse/thermal_expansion/magma_crucible_reinforced/icon.png b/static/browse/thermal_expansion/magma_crucible_reinforced/icon.png new file mode 100644 index 000000000..9c355d62b Binary files /dev/null and b/static/browse/thermal_expansion/magma_crucible_reinforced/icon.png differ diff --git a/prerender/browse/thermal_expansion/magma_crucible_reinforced/index.html b/static/browse/thermal_expansion/magma_crucible_reinforced/index.html similarity index 100% rename from prerender/browse/thermal_expansion/magma_crucible_reinforced/index.html rename to static/browse/thermal_expansion/magma_crucible_reinforced/index.html diff --git a/static/browse/thermal_expansion/magma_crucible_resonant/icon.png b/static/browse/thermal_expansion/magma_crucible_resonant/icon.png new file mode 100644 index 000000000..9c355d62b Binary files /dev/null and b/static/browse/thermal_expansion/magma_crucible_resonant/icon.png differ diff --git a/prerender/browse/thermal_expansion/magma_crucible_resonant/index.html b/static/browse/thermal_expansion/magma_crucible_resonant/index.html similarity index 100% rename from prerender/browse/thermal_expansion/magma_crucible_resonant/index.html rename to static/browse/thermal_expansion/magma_crucible_resonant/index.html diff --git a/static/browse/thermal_expansion/magmatic_dynamo/icon.png b/static/browse/thermal_expansion/magmatic_dynamo/icon.png new file mode 100644 index 000000000..248767fef Binary files /dev/null and b/static/browse/thermal_expansion/magmatic_dynamo/icon.png differ diff --git a/prerender/browse/thermal_expansion/magmatic_dynamo/index.html b/static/browse/thermal_expansion/magmatic_dynamo/index.html similarity index 100% rename from prerender/browse/thermal_expansion/magmatic_dynamo/index.html rename to static/browse/thermal_expansion/magmatic_dynamo/index.html diff --git a/static/browse/thermal_expansion/mana_dust/icon.png b/static/browse/thermal_expansion/mana_dust/icon.png new file mode 100644 index 000000000..a03a456cf Binary files /dev/null and b/static/browse/thermal_expansion/mana_dust/icon.png differ diff --git a/prerender/browse/thermal_expansion/mana_dust/index.html b/static/browse/thermal_expansion/mana_dust/index.html similarity index 100% rename from prerender/browse/thermal_expansion/mana_dust/index.html rename to static/browse/thermal_expansion/mana_dust/index.html diff --git a/static/browse/thermal_expansion/mana_infused_block/icon.png b/static/browse/thermal_expansion/mana_infused_block/icon.png new file mode 100644 index 000000000..61eaac01f Binary files /dev/null and b/static/browse/thermal_expansion/mana_infused_block/icon.png differ diff --git a/prerender/browse/thermal_expansion/mana_infused_block/index.html b/static/browse/thermal_expansion/mana_infused_block/index.html similarity index 100% rename from prerender/browse/thermal_expansion/mana_infused_block/index.html rename to static/browse/thermal_expansion/mana_infused_block/index.html diff --git a/static/browse/thermal_expansion/mana_infused_gear/icon.png b/static/browse/thermal_expansion/mana_infused_gear/icon.png new file mode 100644 index 000000000..4db6b81b3 Binary files /dev/null and b/static/browse/thermal_expansion/mana_infused_gear/icon.png differ diff --git a/prerender/browse/thermal_expansion/mana_infused_gear/index.html b/static/browse/thermal_expansion/mana_infused_gear/index.html similarity index 100% rename from prerender/browse/thermal_expansion/mana_infused_gear/index.html rename to static/browse/thermal_expansion/mana_infused_gear/index.html diff --git a/static/browse/thermal_expansion/mana_infused_ingot/icon.png b/static/browse/thermal_expansion/mana_infused_ingot/icon.png new file mode 100644 index 000000000..45cea1857 Binary files /dev/null and b/static/browse/thermal_expansion/mana_infused_ingot/icon.png differ diff --git a/prerender/browse/thermal_expansion/mana_infused_ingot/index.html b/static/browse/thermal_expansion/mana_infused_ingot/index.html similarity index 100% rename from prerender/browse/thermal_expansion/mana_infused_ingot/index.html rename to static/browse/thermal_expansion/mana_infused_ingot/index.html diff --git a/static/browse/thermal_expansion/mana_infused_nugget/icon.png b/static/browse/thermal_expansion/mana_infused_nugget/icon.png new file mode 100644 index 000000000..53cb23206 Binary files /dev/null and b/static/browse/thermal_expansion/mana_infused_nugget/icon.png differ diff --git a/prerender/browse/thermal_expansion/mana_infused_nugget/index.html b/static/browse/thermal_expansion/mana_infused_nugget/index.html similarity index 100% rename from prerender/browse/thermal_expansion/mana_infused_nugget/index.html rename to static/browse/thermal_expansion/mana_infused_nugget/index.html diff --git a/static/browse/thermal_expansion/mana_infused_ore/icon.png b/static/browse/thermal_expansion/mana_infused_ore/icon.png new file mode 100644 index 000000000..70c61d8c0 Binary files /dev/null and b/static/browse/thermal_expansion/mana_infused_ore/icon.png differ diff --git a/prerender/browse/thermal_expansion/mana_infused_ore/index.html b/static/browse/thermal_expansion/mana_infused_ore/index.html similarity index 100% rename from prerender/browse/thermal_expansion/mana_infused_ore/index.html rename to static/browse/thermal_expansion/mana_infused_ore/index.html diff --git a/static/browse/thermal_expansion/multimeter/icon.png b/static/browse/thermal_expansion/multimeter/icon.png new file mode 100644 index 000000000..c38af5a73 Binary files /dev/null and b/static/browse/thermal_expansion/multimeter/icon.png differ diff --git a/prerender/browse/thermal_expansion/multimeter/index.html b/static/browse/thermal_expansion/multimeter/index.html similarity index 100% rename from prerender/browse/thermal_expansion/multimeter/index.html rename to static/browse/thermal_expansion/multimeter/index.html diff --git a/static/browse/thermal_expansion/niter/icon.png b/static/browse/thermal_expansion/niter/icon.png new file mode 100644 index 000000000..388824ddc Binary files /dev/null and b/static/browse/thermal_expansion/niter/icon.png differ diff --git a/prerender/browse/thermal_expansion/niter/index.html b/static/browse/thermal_expansion/niter/index.html similarity index 100% rename from prerender/browse/thermal_expansion/niter/index.html rename to static/browse/thermal_expansion/niter/index.html diff --git a/static/browse/thermal_expansion/nullifier/icon.png b/static/browse/thermal_expansion/nullifier/icon.png new file mode 100644 index 000000000..56e9aecf4 Binary files /dev/null and b/static/browse/thermal_expansion/nullifier/icon.png differ diff --git a/prerender/browse/thermal_expansion/nullifier/index.html b/static/browse/thermal_expansion/nullifier/index.html similarity index 100% rename from prerender/browse/thermal_expansion/nullifier/index.html rename to static/browse/thermal_expansion/nullifier/index.html diff --git a/static/browse/thermal_expansion/orange_rockwool/icon.png b/static/browse/thermal_expansion/orange_rockwool/icon.png new file mode 100644 index 000000000..6e2322fdb Binary files /dev/null and b/static/browse/thermal_expansion/orange_rockwool/icon.png differ diff --git a/prerender/browse/thermal_expansion/orange_rockwool/index.html b/static/browse/thermal_expansion/orange_rockwool/index.html similarity index 100% rename from prerender/browse/thermal_expansion/orange_rockwool/index.html rename to static/browse/thermal_expansion/orange_rockwool/index.html diff --git a/static/browse/thermal_expansion/pink_rockwool/icon.png b/static/browse/thermal_expansion/pink_rockwool/icon.png new file mode 100644 index 000000000..fd0cf5959 Binary files /dev/null and b/static/browse/thermal_expansion/pink_rockwool/icon.png differ diff --git a/prerender/browse/thermal_expansion/pink_rockwool/index.html b/static/browse/thermal_expansion/pink_rockwool/index.html similarity index 100% rename from prerender/browse/thermal_expansion/pink_rockwool/index.html rename to static/browse/thermal_expansion/pink_rockwool/index.html diff --git a/static/browse/thermal_expansion/plate/icon.png b/static/browse/thermal_expansion/plate/icon.png new file mode 100644 index 000000000..323633590 Binary files /dev/null and b/static/browse/thermal_expansion/plate/icon.png differ diff --git a/prerender/browse/thermal_expansion/plate/index.html b/static/browse/thermal_expansion/plate/index.html similarity index 100% rename from prerender/browse/thermal_expansion/plate/index.html rename to static/browse/thermal_expansion/plate/index.html diff --git a/static/browse/thermal_expansion/pneumatic_servo/icon.png b/static/browse/thermal_expansion/pneumatic_servo/icon.png new file mode 100644 index 000000000..048584180 Binary files /dev/null and b/static/browse/thermal_expansion/pneumatic_servo/icon.png differ diff --git a/prerender/browse/thermal_expansion/pneumatic_servo/index.html b/static/browse/thermal_expansion/pneumatic_servo/index.html similarity index 100% rename from prerender/browse/thermal_expansion/pneumatic_servo/index.html rename to static/browse/thermal_expansion/pneumatic_servo/index.html diff --git a/static/browse/thermal_expansion/portable_tank/icon.png b/static/browse/thermal_expansion/portable_tank/icon.png new file mode 100644 index 000000000..0a7bca38e Binary files /dev/null and b/static/browse/thermal_expansion/portable_tank/icon.png differ diff --git a/prerender/browse/thermal_expansion/portable_tank/index.html b/static/browse/thermal_expansion/portable_tank/index.html similarity index 100% rename from prerender/browse/thermal_expansion/portable_tank/index.html rename to static/browse/thermal_expansion/portable_tank/index.html diff --git a/static/browse/thermal_expansion/primal_mana_bucket/icon.png b/static/browse/thermal_expansion/primal_mana_bucket/icon.png new file mode 100644 index 000000000..9063401c5 Binary files /dev/null and b/static/browse/thermal_expansion/primal_mana_bucket/icon.png differ diff --git a/prerender/browse/thermal_expansion/primal_mana_bucket/index.html b/static/browse/thermal_expansion/primal_mana_bucket/index.html similarity index 100% rename from prerender/browse/thermal_expansion/primal_mana_bucket/index.html rename to static/browse/thermal_expansion/primal_mana_bucket/index.html diff --git a/static/browse/thermal_expansion/pulverized_charcoal/icon.png b/static/browse/thermal_expansion/pulverized_charcoal/icon.png new file mode 100644 index 000000000..e81ec943f Binary files /dev/null and b/static/browse/thermal_expansion/pulverized_charcoal/icon.png differ diff --git a/prerender/browse/thermal_expansion/pulverized_charcoal/index.html b/static/browse/thermal_expansion/pulverized_charcoal/index.html similarity index 100% rename from prerender/browse/thermal_expansion/pulverized_charcoal/index.html rename to static/browse/thermal_expansion/pulverized_charcoal/index.html diff --git a/static/browse/thermal_expansion/pulverized_coal/icon.png b/static/browse/thermal_expansion/pulverized_coal/icon.png new file mode 100644 index 000000000..ebb04c0ed Binary files /dev/null and b/static/browse/thermal_expansion/pulverized_coal/icon.png differ diff --git a/prerender/browse/thermal_expansion/pulverized_coal/index.html b/static/browse/thermal_expansion/pulverized_coal/index.html similarity index 100% rename from prerender/browse/thermal_expansion/pulverized_coal/index.html rename to static/browse/thermal_expansion/pulverized_coal/index.html diff --git a/static/browse/thermal_expansion/pulverized_copper/icon.png b/static/browse/thermal_expansion/pulverized_copper/icon.png new file mode 100644 index 000000000..2f69042f1 Binary files /dev/null and b/static/browse/thermal_expansion/pulverized_copper/icon.png differ diff --git a/prerender/browse/thermal_expansion/pulverized_copper/index.html b/static/browse/thermal_expansion/pulverized_copper/index.html similarity index 100% rename from prerender/browse/thermal_expansion/pulverized_copper/index.html rename to static/browse/thermal_expansion/pulverized_copper/index.html diff --git a/static/browse/thermal_expansion/pulverized_ferrous_metal/icon.png b/static/browse/thermal_expansion/pulverized_ferrous_metal/icon.png new file mode 100644 index 000000000..e1bf34995 Binary files /dev/null and b/static/browse/thermal_expansion/pulverized_ferrous_metal/icon.png differ diff --git a/prerender/browse/thermal_expansion/pulverized_ferrous_metal/index.html b/static/browse/thermal_expansion/pulverized_ferrous_metal/index.html similarity index 100% rename from prerender/browse/thermal_expansion/pulverized_ferrous_metal/index.html rename to static/browse/thermal_expansion/pulverized_ferrous_metal/index.html diff --git a/static/browse/thermal_expansion/pulverized_gold/icon.png b/static/browse/thermal_expansion/pulverized_gold/icon.png new file mode 100644 index 000000000..84b415b04 Binary files /dev/null and b/static/browse/thermal_expansion/pulverized_gold/icon.png differ diff --git a/prerender/browse/thermal_expansion/pulverized_gold/index.html b/static/browse/thermal_expansion/pulverized_gold/index.html similarity index 100% rename from prerender/browse/thermal_expansion/pulverized_gold/index.html rename to static/browse/thermal_expansion/pulverized_gold/index.html diff --git a/static/browse/thermal_expansion/pulverized_iron/icon.png b/static/browse/thermal_expansion/pulverized_iron/icon.png new file mode 100644 index 000000000..3a93a01b4 Binary files /dev/null and b/static/browse/thermal_expansion/pulverized_iron/icon.png differ diff --git a/prerender/browse/thermal_expansion/pulverized_iron/index.html b/static/browse/thermal_expansion/pulverized_iron/index.html similarity index 100% rename from prerender/browse/thermal_expansion/pulverized_iron/index.html rename to static/browse/thermal_expansion/pulverized_iron/index.html diff --git a/static/browse/thermal_expansion/pulverized_lead/icon.png b/static/browse/thermal_expansion/pulverized_lead/icon.png new file mode 100644 index 000000000..6a7fae88d Binary files /dev/null and b/static/browse/thermal_expansion/pulverized_lead/icon.png differ diff --git a/prerender/browse/thermal_expansion/pulverized_lead/index.html b/static/browse/thermal_expansion/pulverized_lead/index.html similarity index 100% rename from prerender/browse/thermal_expansion/pulverized_lead/index.html rename to static/browse/thermal_expansion/pulverized_lead/index.html diff --git a/static/browse/thermal_expansion/pulverized_mana_infused_metal/icon.png b/static/browse/thermal_expansion/pulverized_mana_infused_metal/icon.png new file mode 100644 index 000000000..d7be3258c Binary files /dev/null and b/static/browse/thermal_expansion/pulverized_mana_infused_metal/icon.png differ diff --git a/prerender/browse/thermal_expansion/pulverized_mana_infused_metal/index.html b/static/browse/thermal_expansion/pulverized_mana_infused_metal/index.html similarity index 100% rename from prerender/browse/thermal_expansion/pulverized_mana_infused_metal/index.html rename to static/browse/thermal_expansion/pulverized_mana_infused_metal/index.html diff --git a/static/browse/thermal_expansion/pulverized_obsidian/icon.png b/static/browse/thermal_expansion/pulverized_obsidian/icon.png new file mode 100644 index 000000000..9d55f3678 Binary files /dev/null and b/static/browse/thermal_expansion/pulverized_obsidian/icon.png differ diff --git a/prerender/browse/thermal_expansion/pulverized_obsidian/index.html b/static/browse/thermal_expansion/pulverized_obsidian/index.html similarity index 100% rename from prerender/browse/thermal_expansion/pulverized_obsidian/index.html rename to static/browse/thermal_expansion/pulverized_obsidian/index.html diff --git a/static/browse/thermal_expansion/pulverized_shiny_metal/icon.png b/static/browse/thermal_expansion/pulverized_shiny_metal/icon.png new file mode 100644 index 000000000..c97b59c53 Binary files /dev/null and b/static/browse/thermal_expansion/pulverized_shiny_metal/icon.png differ diff --git a/prerender/browse/thermal_expansion/pulverized_shiny_metal/index.html b/static/browse/thermal_expansion/pulverized_shiny_metal/index.html similarity index 100% rename from prerender/browse/thermal_expansion/pulverized_shiny_metal/index.html rename to static/browse/thermal_expansion/pulverized_shiny_metal/index.html diff --git a/static/browse/thermal_expansion/pulverized_silver/icon.png b/static/browse/thermal_expansion/pulverized_silver/icon.png new file mode 100644 index 000000000..cdd83ef22 Binary files /dev/null and b/static/browse/thermal_expansion/pulverized_silver/icon.png differ diff --git a/prerender/browse/thermal_expansion/pulverized_silver/index.html b/static/browse/thermal_expansion/pulverized_silver/index.html similarity index 100% rename from prerender/browse/thermal_expansion/pulverized_silver/index.html rename to static/browse/thermal_expansion/pulverized_silver/index.html diff --git a/static/browse/thermal_expansion/pulverized_tin/icon.png b/static/browse/thermal_expansion/pulverized_tin/icon.png new file mode 100644 index 000000000..976c4be0a Binary files /dev/null and b/static/browse/thermal_expansion/pulverized_tin/icon.png differ diff --git a/prerender/browse/thermal_expansion/pulverized_tin/index.html b/static/browse/thermal_expansion/pulverized_tin/index.html similarity index 100% rename from prerender/browse/thermal_expansion/pulverized_tin/index.html rename to static/browse/thermal_expansion/pulverized_tin/index.html diff --git a/static/browse/thermal_expansion/pulverizer/icon.png b/static/browse/thermal_expansion/pulverizer/icon.png new file mode 100644 index 000000000..d91033b04 Binary files /dev/null and b/static/browse/thermal_expansion/pulverizer/icon.png differ diff --git a/prerender/browse/thermal_expansion/pulverizer/index.html b/static/browse/thermal_expansion/pulverizer/index.html similarity index 100% rename from prerender/browse/thermal_expansion/pulverizer/index.html rename to static/browse/thermal_expansion/pulverizer/index.html diff --git a/static/browse/thermal_expansion/pulverizer_hardened/icon.png b/static/browse/thermal_expansion/pulverizer_hardened/icon.png new file mode 100644 index 000000000..d91033b04 Binary files /dev/null and b/static/browse/thermal_expansion/pulverizer_hardened/icon.png differ diff --git a/prerender/browse/thermal_expansion/pulverizer_hardened/index.html b/static/browse/thermal_expansion/pulverizer_hardened/index.html similarity index 100% rename from prerender/browse/thermal_expansion/pulverizer_hardened/index.html rename to static/browse/thermal_expansion/pulverizer_hardened/index.html diff --git a/static/browse/thermal_expansion/pulverizer_reinforced/icon.png b/static/browse/thermal_expansion/pulverizer_reinforced/icon.png new file mode 100644 index 000000000..d91033b04 Binary files /dev/null and b/static/browse/thermal_expansion/pulverizer_reinforced/icon.png differ diff --git a/prerender/browse/thermal_expansion/pulverizer_reinforced/index.html b/static/browse/thermal_expansion/pulverizer_reinforced/index.html similarity index 100% rename from prerender/browse/thermal_expansion/pulverizer_reinforced/index.html rename to static/browse/thermal_expansion/pulverizer_reinforced/index.html diff --git a/static/browse/thermal_expansion/pulverizer_resonant/icon.png b/static/browse/thermal_expansion/pulverizer_resonant/icon.png new file mode 100644 index 000000000..d91033b04 Binary files /dev/null and b/static/browse/thermal_expansion/pulverizer_resonant/icon.png differ diff --git a/prerender/browse/thermal_expansion/pulverizer_resonant/index.html b/static/browse/thermal_expansion/pulverizer_resonant/index.html similarity index 100% rename from prerender/browse/thermal_expansion/pulverizer_resonant/index.html rename to static/browse/thermal_expansion/pulverizer_resonant/index.html diff --git a/static/browse/thermal_expansion/purple_rockwool/icon.png b/static/browse/thermal_expansion/purple_rockwool/icon.png new file mode 100644 index 000000000..afa96c405 Binary files /dev/null and b/static/browse/thermal_expansion/purple_rockwool/icon.png differ diff --git a/prerender/browse/thermal_expansion/purple_rockwool/index.html b/static/browse/thermal_expansion/purple_rockwool/index.html similarity index 100% rename from prerender/browse/thermal_expansion/purple_rockwool/index.html rename to static/browse/thermal_expansion/purple_rockwool/index.html diff --git a/static/browse/thermal_expansion/pyrotheum_dust/icon.png b/static/browse/thermal_expansion/pyrotheum_dust/icon.png new file mode 100644 index 000000000..b5a4b55c7 Binary files /dev/null and b/static/browse/thermal_expansion/pyrotheum_dust/icon.png differ diff --git a/prerender/browse/thermal_expansion/pyrotheum_dust/index.html b/static/browse/thermal_expansion/pyrotheum_dust/index.html similarity index 100% rename from prerender/browse/thermal_expansion/pyrotheum_dust/index.html rename to static/browse/thermal_expansion/pyrotheum_dust/index.html diff --git a/static/browse/thermal_expansion/radiant_lumium_lamp/icon.png b/static/browse/thermal_expansion/radiant_lumium_lamp/icon.png new file mode 100644 index 000000000..684403222 Binary files /dev/null and b/static/browse/thermal_expansion/radiant_lumium_lamp/icon.png differ diff --git a/prerender/browse/thermal_expansion/radiant_lumium_lamp/index.html b/static/browse/thermal_expansion/radiant_lumium_lamp/index.html similarity index 100% rename from prerender/browse/thermal_expansion/radiant_lumium_lamp/index.html rename to static/browse/thermal_expansion/radiant_lumium_lamp/index.html diff --git a/static/browse/thermal_expansion/reactant_dynamo/icon.png b/static/browse/thermal_expansion/reactant_dynamo/icon.png new file mode 100644 index 000000000..f86cfe2e9 Binary files /dev/null and b/static/browse/thermal_expansion/reactant_dynamo/icon.png differ diff --git a/prerender/browse/thermal_expansion/reactant_dynamo/index.html b/static/browse/thermal_expansion/reactant_dynamo/index.html similarity index 100% rename from prerender/browse/thermal_expansion/reactant_dynamo/index.html rename to static/browse/thermal_expansion/reactant_dynamo/index.html diff --git a/static/browse/thermal_expansion/red_rockwool/icon.png b/static/browse/thermal_expansion/red_rockwool/icon.png new file mode 100644 index 000000000..4cf36d486 Binary files /dev/null and b/static/browse/thermal_expansion/red_rockwool/icon.png differ diff --git a/prerender/browse/thermal_expansion/red_rockwool/index.html b/static/browse/thermal_expansion/red_rockwool/index.html similarity index 100% rename from prerender/browse/thermal_expansion/red_rockwool/index.html rename to static/browse/thermal_expansion/red_rockwool/index.html diff --git a/static/browse/thermal_expansion/redprint/icon.png b/static/browse/thermal_expansion/redprint/icon.png new file mode 100644 index 000000000..5d19df4a3 Binary files /dev/null and b/static/browse/thermal_expansion/redprint/icon.png differ diff --git a/prerender/browse/thermal_expansion/redprint/index.html b/static/browse/thermal_expansion/redprint/index.html similarity index 100% rename from prerender/browse/thermal_expansion/redprint/index.html rename to static/browse/thermal_expansion/redprint/index.html diff --git a/static/browse/thermal_expansion/redstone_conductance_coil/icon.png b/static/browse/thermal_expansion/redstone_conductance_coil/icon.png new file mode 100644 index 000000000..d3b8216df Binary files /dev/null and b/static/browse/thermal_expansion/redstone_conductance_coil/icon.png differ diff --git a/prerender/browse/thermal_expansion/redstone_conductance_coil/index.html b/static/browse/thermal_expansion/redstone_conductance_coil/index.html similarity index 100% rename from prerender/browse/thermal_expansion/redstone_conductance_coil/index.html rename to static/browse/thermal_expansion/redstone_conductance_coil/index.html diff --git a/static/browse/thermal_expansion/redstone_energy_cell/icon.png b/static/browse/thermal_expansion/redstone_energy_cell/icon.png new file mode 100644 index 000000000..2ecf4b952 Binary files /dev/null and b/static/browse/thermal_expansion/redstone_energy_cell/icon.png differ diff --git a/prerender/browse/thermal_expansion/redstone_energy_cell/index.html b/static/browse/thermal_expansion/redstone_energy_cell/index.html similarity index 100% rename from prerender/browse/thermal_expansion/redstone_energy_cell/index.html rename to static/browse/thermal_expansion/redstone_energy_cell/index.html diff --git a/static/browse/thermal_expansion/redstone_energy_cell_frame_empty/icon.png b/static/browse/thermal_expansion/redstone_energy_cell_frame_empty/icon.png new file mode 100644 index 000000000..1a862f792 Binary files /dev/null and b/static/browse/thermal_expansion/redstone_energy_cell_frame_empty/icon.png differ diff --git a/prerender/browse/thermal_expansion/redstone_energy_cell_frame_empty/index.html b/static/browse/thermal_expansion/redstone_energy_cell_frame_empty/index.html similarity index 100% rename from prerender/browse/thermal_expansion/redstone_energy_cell_frame_empty/index.html rename to static/browse/thermal_expansion/redstone_energy_cell_frame_empty/index.html diff --git a/static/browse/thermal_expansion/redstone_energy_cell_frame_full/icon.png b/static/browse/thermal_expansion/redstone_energy_cell_frame_full/icon.png new file mode 100644 index 000000000..dc66c2868 Binary files /dev/null and b/static/browse/thermal_expansion/redstone_energy_cell_frame_full/icon.png differ diff --git a/prerender/browse/thermal_expansion/redstone_energy_cell_frame_full/index.html b/static/browse/thermal_expansion/redstone_energy_cell_frame_full/index.html similarity index 100% rename from prerender/browse/thermal_expansion/redstone_energy_cell_frame_full/index.html rename to static/browse/thermal_expansion/redstone_energy_cell_frame_full/index.html diff --git a/static/browse/thermal_expansion/redstone_flux_capacitor/icon.png b/static/browse/thermal_expansion/redstone_flux_capacitor/icon.png new file mode 100644 index 000000000..f603b41fb Binary files /dev/null and b/static/browse/thermal_expansion/redstone_flux_capacitor/icon.png differ diff --git a/prerender/browse/thermal_expansion/redstone_flux_capacitor/index.html b/static/browse/thermal_expansion/redstone_flux_capacitor/index.html similarity index 100% rename from prerender/browse/thermal_expansion/redstone_flux_capacitor/index.html rename to static/browse/thermal_expansion/redstone_flux_capacitor/index.html diff --git a/static/browse/thermal_expansion/redstone_furnace/icon.png b/static/browse/thermal_expansion/redstone_furnace/icon.png new file mode 100644 index 000000000..86d3d6c83 Binary files /dev/null and b/static/browse/thermal_expansion/redstone_furnace/icon.png differ diff --git a/prerender/browse/thermal_expansion/redstone_furnace/index.html b/static/browse/thermal_expansion/redstone_furnace/index.html similarity index 100% rename from prerender/browse/thermal_expansion/redstone_furnace/index.html rename to static/browse/thermal_expansion/redstone_furnace/index.html diff --git a/static/browse/thermal_expansion/redstone_furnace_hardened/icon.png b/static/browse/thermal_expansion/redstone_furnace_hardened/icon.png new file mode 100644 index 000000000..86d3d6c83 Binary files /dev/null and b/static/browse/thermal_expansion/redstone_furnace_hardened/icon.png differ diff --git a/prerender/browse/thermal_expansion/redstone_furnace_hardened/index.html b/static/browse/thermal_expansion/redstone_furnace_hardened/index.html similarity index 100% rename from prerender/browse/thermal_expansion/redstone_furnace_hardened/index.html rename to static/browse/thermal_expansion/redstone_furnace_hardened/index.html diff --git a/static/browse/thermal_expansion/redstone_furnace_reinforced/icon.png b/static/browse/thermal_expansion/redstone_furnace_reinforced/icon.png new file mode 100644 index 000000000..86d3d6c83 Binary files /dev/null and b/static/browse/thermal_expansion/redstone_furnace_reinforced/icon.png differ diff --git a/prerender/browse/thermal_expansion/redstone_furnace_reinforced/index.html b/static/browse/thermal_expansion/redstone_furnace_reinforced/index.html similarity index 100% rename from prerender/browse/thermal_expansion/redstone_furnace_reinforced/index.html rename to static/browse/thermal_expansion/redstone_furnace_reinforced/index.html diff --git a/static/browse/thermal_expansion/redstone_furnace_resonant/icon.png b/static/browse/thermal_expansion/redstone_furnace_resonant/icon.png new file mode 100644 index 000000000..86d3d6c83 Binary files /dev/null and b/static/browse/thermal_expansion/redstone_furnace_resonant/icon.png differ diff --git a/prerender/browse/thermal_expansion/redstone_furnace_resonant/index.html b/static/browse/thermal_expansion/redstone_furnace_resonant/index.html similarity index 100% rename from prerender/browse/thermal_expansion/redstone_furnace_resonant/index.html rename to static/browse/thermal_expansion/redstone_furnace_resonant/index.html diff --git a/static/browse/thermal_expansion/redstone_plate/icon.png b/static/browse/thermal_expansion/redstone_plate/icon.png new file mode 100644 index 000000000..6552f7d37 Binary files /dev/null and b/static/browse/thermal_expansion/redstone_plate/icon.png differ diff --git a/prerender/browse/thermal_expansion/redstone_plate/index.html b/static/browse/thermal_expansion/redstone_plate/index.html similarity index 100% rename from prerender/browse/thermal_expansion/redstone_plate/index.html rename to static/browse/thermal_expansion/redstone_plate/index.html diff --git a/static/browse/thermal_expansion/redstone_reception_coil/icon.png b/static/browse/thermal_expansion/redstone_reception_coil/icon.png new file mode 100644 index 000000000..44c527e4f Binary files /dev/null and b/static/browse/thermal_expansion/redstone_reception_coil/icon.png differ diff --git a/prerender/browse/thermal_expansion/redstone_reception_coil/index.html b/static/browse/thermal_expansion/redstone_reception_coil/index.html similarity index 100% rename from prerender/browse/thermal_expansion/redstone_reception_coil/index.html rename to static/browse/thermal_expansion/redstone_reception_coil/index.html diff --git a/static/browse/thermal_expansion/redstone_transmission_coil/icon.png b/static/browse/thermal_expansion/redstone_transmission_coil/icon.png new file mode 100644 index 000000000..16965fe9e Binary files /dev/null and b/static/browse/thermal_expansion/redstone_transmission_coil/icon.png differ diff --git a/prerender/browse/thermal_expansion/redstone_transmission_coil/index.html b/static/browse/thermal_expansion/redstone_transmission_coil/index.html similarity index 100% rename from prerender/browse/thermal_expansion/redstone_transmission_coil/index.html rename to static/browse/thermal_expansion/redstone_transmission_coil/index.html diff --git a/static/browse/thermal_expansion/reinforced_cache/icon.png b/static/browse/thermal_expansion/reinforced_cache/icon.png new file mode 100644 index 000000000..15624449d Binary files /dev/null and b/static/browse/thermal_expansion/reinforced_cache/icon.png differ diff --git a/prerender/browse/thermal_expansion/reinforced_cache/index.html b/static/browse/thermal_expansion/reinforced_cache/index.html similarity index 100% rename from prerender/browse/thermal_expansion/reinforced_cache/index.html rename to static/browse/thermal_expansion/reinforced_cache/index.html diff --git a/static/browse/thermal_expansion/reinforced_portable_tank/icon.png b/static/browse/thermal_expansion/reinforced_portable_tank/icon.png new file mode 100644 index 000000000..8f31fc0d6 Binary files /dev/null and b/static/browse/thermal_expansion/reinforced_portable_tank/icon.png differ diff --git a/prerender/browse/thermal_expansion/reinforced_portable_tank/index.html b/static/browse/thermal_expansion/reinforced_portable_tank/index.html similarity index 100% rename from prerender/browse/thermal_expansion/reinforced_portable_tank/index.html rename to static/browse/thermal_expansion/reinforced_portable_tank/index.html diff --git a/static/browse/thermal_expansion/reinforced_satchel/icon.png b/static/browse/thermal_expansion/reinforced_satchel/icon.png new file mode 100644 index 000000000..c22bb6dae Binary files /dev/null and b/static/browse/thermal_expansion/reinforced_satchel/icon.png differ diff --git a/prerender/browse/thermal_expansion/reinforced_satchel/index.html b/static/browse/thermal_expansion/reinforced_satchel/index.html similarity index 100% rename from prerender/browse/thermal_expansion/reinforced_satchel/index.html rename to static/browse/thermal_expansion/reinforced_satchel/index.html diff --git a/static/browse/thermal_expansion/reinforced_strongbox/icon.png b/static/browse/thermal_expansion/reinforced_strongbox/icon.png new file mode 100644 index 000000000..3b7798905 Binary files /dev/null and b/static/browse/thermal_expansion/reinforced_strongbox/icon.png differ diff --git a/prerender/browse/thermal_expansion/reinforced_strongbox/index.html b/static/browse/thermal_expansion/reinforced_strongbox/index.html similarity index 100% rename from prerender/browse/thermal_expansion/reinforced_strongbox/index.html rename to static/browse/thermal_expansion/reinforced_strongbox/index.html diff --git a/static/browse/thermal_expansion/resonant_cache/icon.png b/static/browse/thermal_expansion/resonant_cache/icon.png new file mode 100644 index 000000000..0ed54b619 Binary files /dev/null and b/static/browse/thermal_expansion/resonant_cache/icon.png differ diff --git a/prerender/browse/thermal_expansion/resonant_cache/index.html b/static/browse/thermal_expansion/resonant_cache/index.html similarity index 100% rename from prerender/browse/thermal_expansion/resonant_cache/index.html rename to static/browse/thermal_expansion/resonant_cache/index.html diff --git a/static/browse/thermal_expansion/resonant_ender/icon.png b/static/browse/thermal_expansion/resonant_ender/icon.png new file mode 100644 index 000000000..68948a736 Binary files /dev/null and b/static/browse/thermal_expansion/resonant_ender/icon.png differ diff --git a/prerender/browse/thermal_expansion/resonant_ender/index.html b/static/browse/thermal_expansion/resonant_ender/index.html similarity index 100% rename from prerender/browse/thermal_expansion/resonant_ender/index.html rename to static/browse/thermal_expansion/resonant_ender/index.html diff --git a/static/browse/thermal_expansion/resonant_ender_bucket/icon.png b/static/browse/thermal_expansion/resonant_ender_bucket/icon.png new file mode 100644 index 000000000..9585696ec Binary files /dev/null and b/static/browse/thermal_expansion/resonant_ender_bucket/icon.png differ diff --git a/prerender/browse/thermal_expansion/resonant_ender_bucket/index.html b/static/browse/thermal_expansion/resonant_ender_bucket/index.html similarity index 100% rename from prerender/browse/thermal_expansion/resonant_ender_bucket/index.html rename to static/browse/thermal_expansion/resonant_ender_bucket/index.html diff --git a/static/browse/thermal_expansion/resonant_energy_cell/icon.png b/static/browse/thermal_expansion/resonant_energy_cell/icon.png new file mode 100644 index 000000000..ccbf0ed16 Binary files /dev/null and b/static/browse/thermal_expansion/resonant_energy_cell/icon.png differ diff --git a/prerender/browse/thermal_expansion/resonant_energy_cell/index.html b/static/browse/thermal_expansion/resonant_energy_cell/index.html similarity index 100% rename from prerender/browse/thermal_expansion/resonant_energy_cell/index.html rename to static/browse/thermal_expansion/resonant_energy_cell/index.html diff --git a/static/browse/thermal_expansion/resonant_flux_capacitor/icon.png b/static/browse/thermal_expansion/resonant_flux_capacitor/icon.png new file mode 100644 index 000000000..bcaf6c4a3 Binary files /dev/null and b/static/browse/thermal_expansion/resonant_flux_capacitor/icon.png differ diff --git a/prerender/browse/thermal_expansion/resonant_flux_capacitor/index.html b/static/browse/thermal_expansion/resonant_flux_capacitor/index.html similarity index 100% rename from prerender/browse/thermal_expansion/resonant_flux_capacitor/index.html rename to static/browse/thermal_expansion/resonant_flux_capacitor/index.html diff --git a/static/browse/thermal_expansion/resonant_portable_tank/icon.png b/static/browse/thermal_expansion/resonant_portable_tank/icon.png new file mode 100644 index 000000000..0563a05e9 Binary files /dev/null and b/static/browse/thermal_expansion/resonant_portable_tank/icon.png differ diff --git a/prerender/browse/thermal_expansion/resonant_portable_tank/index.html b/static/browse/thermal_expansion/resonant_portable_tank/index.html similarity index 100% rename from prerender/browse/thermal_expansion/resonant_portable_tank/index.html rename to static/browse/thermal_expansion/resonant_portable_tank/index.html diff --git a/static/browse/thermal_expansion/resonant_satchel/icon.png b/static/browse/thermal_expansion/resonant_satchel/icon.png new file mode 100644 index 000000000..eb704e94f Binary files /dev/null and b/static/browse/thermal_expansion/resonant_satchel/icon.png differ diff --git a/prerender/browse/thermal_expansion/resonant_satchel/index.html b/static/browse/thermal_expansion/resonant_satchel/index.html similarity index 100% rename from prerender/browse/thermal_expansion/resonant_satchel/index.html rename to static/browse/thermal_expansion/resonant_satchel/index.html diff --git a/static/browse/thermal_expansion/resonant_strongbox/icon.png b/static/browse/thermal_expansion/resonant_strongbox/icon.png new file mode 100644 index 000000000..9f302bae6 Binary files /dev/null and b/static/browse/thermal_expansion/resonant_strongbox/icon.png differ diff --git a/prerender/browse/thermal_expansion/resonant_strongbox/index.html b/static/browse/thermal_expansion/resonant_strongbox/index.html similarity index 100% rename from prerender/browse/thermal_expansion/resonant_strongbox/index.html rename to static/browse/thermal_expansion/resonant_strongbox/index.html diff --git a/static/browse/thermal_expansion/rich_slag/icon.png b/static/browse/thermal_expansion/rich_slag/icon.png new file mode 100644 index 000000000..8a143893c Binary files /dev/null and b/static/browse/thermal_expansion/rich_slag/icon.png differ diff --git a/prerender/browse/thermal_expansion/rich_slag/index.html b/static/browse/thermal_expansion/rich_slag/index.html similarity index 100% rename from prerender/browse/thermal_expansion/rich_slag/index.html rename to static/browse/thermal_expansion/rich_slag/index.html diff --git a/static/browse/thermal_expansion/satchel/icon.png b/static/browse/thermal_expansion/satchel/icon.png new file mode 100644 index 000000000..61198adcc Binary files /dev/null and b/static/browse/thermal_expansion/satchel/icon.png differ diff --git a/prerender/browse/thermal_expansion/satchel/index.html b/static/browse/thermal_expansion/satchel/index.html similarity index 100% rename from prerender/browse/thermal_expansion/satchel/index.html rename to static/browse/thermal_expansion/satchel/index.html diff --git a/static/browse/thermal_expansion/sawdust/icon.png b/static/browse/thermal_expansion/sawdust/icon.png new file mode 100644 index 000000000..4bef0b57d Binary files /dev/null and b/static/browse/thermal_expansion/sawdust/icon.png differ diff --git a/prerender/browse/thermal_expansion/sawdust/index.html b/static/browse/thermal_expansion/sawdust/index.html similarity index 100% rename from prerender/browse/thermal_expansion/sawdust/index.html rename to static/browse/thermal_expansion/sawdust/index.html diff --git a/static/browse/thermal_expansion/sawmill/icon.png b/static/browse/thermal_expansion/sawmill/icon.png new file mode 100644 index 000000000..4b20624dc Binary files /dev/null and b/static/browse/thermal_expansion/sawmill/icon.png differ diff --git a/prerender/browse/thermal_expansion/sawmill/index.html b/static/browse/thermal_expansion/sawmill/index.html similarity index 100% rename from prerender/browse/thermal_expansion/sawmill/index.html rename to static/browse/thermal_expansion/sawmill/index.html diff --git a/static/browse/thermal_expansion/sawmill_hardened/icon.png b/static/browse/thermal_expansion/sawmill_hardened/icon.png new file mode 100644 index 000000000..4b20624dc Binary files /dev/null and b/static/browse/thermal_expansion/sawmill_hardened/icon.png differ diff --git a/prerender/browse/thermal_expansion/sawmill_hardened/index.html b/static/browse/thermal_expansion/sawmill_hardened/index.html similarity index 100% rename from prerender/browse/thermal_expansion/sawmill_hardened/index.html rename to static/browse/thermal_expansion/sawmill_hardened/index.html diff --git a/static/browse/thermal_expansion/sawmill_reinforced/icon.png b/static/browse/thermal_expansion/sawmill_reinforced/icon.png new file mode 100644 index 000000000..4b20624dc Binary files /dev/null and b/static/browse/thermal_expansion/sawmill_reinforced/icon.png differ diff --git a/prerender/browse/thermal_expansion/sawmill_reinforced/index.html b/static/browse/thermal_expansion/sawmill_reinforced/index.html similarity index 100% rename from prerender/browse/thermal_expansion/sawmill_reinforced/index.html rename to static/browse/thermal_expansion/sawmill_reinforced/index.html diff --git a/static/browse/thermal_expansion/sawmill_resonant/icon.png b/static/browse/thermal_expansion/sawmill_resonant/icon.png new file mode 100644 index 000000000..4b20624dc Binary files /dev/null and b/static/browse/thermal_expansion/sawmill_resonant/icon.png differ diff --git a/prerender/browse/thermal_expansion/sawmill_resonant/index.html b/static/browse/thermal_expansion/sawmill_resonant/index.html similarity index 100% rename from prerender/browse/thermal_expansion/sawmill_resonant/index.html rename to static/browse/thermal_expansion/sawmill_resonant/index.html diff --git a/static/browse/thermal_expansion/schematic/icon.png b/static/browse/thermal_expansion/schematic/icon.png new file mode 100644 index 000000000..3010048e9 Binary files /dev/null and b/static/browse/thermal_expansion/schematic/icon.png differ diff --git a/prerender/browse/thermal_expansion/schematic/index.html b/static/browse/thermal_expansion/schematic/index.html similarity index 100% rename from prerender/browse/thermal_expansion/schematic/index.html rename to static/browse/thermal_expansion/schematic/index.html diff --git a/static/browse/thermal_expansion/shiny_block/icon.png b/static/browse/thermal_expansion/shiny_block/icon.png new file mode 100644 index 000000000..c28a846ff Binary files /dev/null and b/static/browse/thermal_expansion/shiny_block/icon.png differ diff --git a/prerender/browse/thermal_expansion/shiny_block/index.html b/static/browse/thermal_expansion/shiny_block/index.html similarity index 100% rename from prerender/browse/thermal_expansion/shiny_block/index.html rename to static/browse/thermal_expansion/shiny_block/index.html diff --git a/static/browse/thermal_expansion/shiny_gear/icon.png b/static/browse/thermal_expansion/shiny_gear/icon.png new file mode 100644 index 000000000..a17c7c970 Binary files /dev/null and b/static/browse/thermal_expansion/shiny_gear/icon.png differ diff --git a/prerender/browse/thermal_expansion/shiny_gear/index.html b/static/browse/thermal_expansion/shiny_gear/index.html similarity index 100% rename from prerender/browse/thermal_expansion/shiny_gear/index.html rename to static/browse/thermal_expansion/shiny_gear/index.html diff --git a/static/browse/thermal_expansion/shiny_ingot/icon.png b/static/browse/thermal_expansion/shiny_ingot/icon.png new file mode 100644 index 000000000..6dc2bc9ba Binary files /dev/null and b/static/browse/thermal_expansion/shiny_ingot/icon.png differ diff --git a/prerender/browse/thermal_expansion/shiny_ingot/index.html b/static/browse/thermal_expansion/shiny_ingot/index.html similarity index 100% rename from prerender/browse/thermal_expansion/shiny_ingot/index.html rename to static/browse/thermal_expansion/shiny_ingot/index.html diff --git a/static/browse/thermal_expansion/shiny_nugget/icon.png b/static/browse/thermal_expansion/shiny_nugget/icon.png new file mode 100644 index 000000000..d43e017d8 Binary files /dev/null and b/static/browse/thermal_expansion/shiny_nugget/icon.png differ diff --git a/prerender/browse/thermal_expansion/shiny_nugget/index.html b/static/browse/thermal_expansion/shiny_nugget/index.html similarity index 100% rename from prerender/browse/thermal_expansion/shiny_nugget/index.html rename to static/browse/thermal_expansion/shiny_nugget/index.html diff --git a/static/browse/thermal_expansion/shiny_ore/icon.png b/static/browse/thermal_expansion/shiny_ore/icon.png new file mode 100644 index 000000000..866cbe2f3 Binary files /dev/null and b/static/browse/thermal_expansion/shiny_ore/icon.png differ diff --git a/prerender/browse/thermal_expansion/shiny_ore/index.html b/static/browse/thermal_expansion/shiny_ore/index.html similarity index 100% rename from prerender/browse/thermal_expansion/shiny_ore/index.html rename to static/browse/thermal_expansion/shiny_ore/index.html diff --git a/static/browse/thermal_expansion/signalum_blend/icon.png b/static/browse/thermal_expansion/signalum_blend/icon.png new file mode 100644 index 000000000..def6bab8a Binary files /dev/null and b/static/browse/thermal_expansion/signalum_blend/icon.png differ diff --git a/prerender/browse/thermal_expansion/signalum_blend/index.html b/static/browse/thermal_expansion/signalum_blend/index.html similarity index 100% rename from prerender/browse/thermal_expansion/signalum_blend/index.html rename to static/browse/thermal_expansion/signalum_blend/index.html diff --git a/static/browse/thermal_expansion/signalum_block/icon.png b/static/browse/thermal_expansion/signalum_block/icon.png new file mode 100644 index 000000000..a8e00a329 Binary files /dev/null and b/static/browse/thermal_expansion/signalum_block/icon.png differ diff --git a/prerender/browse/thermal_expansion/signalum_block/index.html b/static/browse/thermal_expansion/signalum_block/index.html similarity index 100% rename from prerender/browse/thermal_expansion/signalum_block/index.html rename to static/browse/thermal_expansion/signalum_block/index.html diff --git a/static/browse/thermal_expansion/signalum_gear/icon.png b/static/browse/thermal_expansion/signalum_gear/icon.png new file mode 100644 index 000000000..2be5a6993 Binary files /dev/null and b/static/browse/thermal_expansion/signalum_gear/icon.png differ diff --git a/prerender/browse/thermal_expansion/signalum_gear/index.html b/static/browse/thermal_expansion/signalum_gear/index.html similarity index 100% rename from prerender/browse/thermal_expansion/signalum_gear/index.html rename to static/browse/thermal_expansion/signalum_gear/index.html diff --git a/static/browse/thermal_expansion/signalum_ingot/icon.png b/static/browse/thermal_expansion/signalum_ingot/icon.png new file mode 100644 index 000000000..a3f276701 Binary files /dev/null and b/static/browse/thermal_expansion/signalum_ingot/icon.png differ diff --git a/prerender/browse/thermal_expansion/signalum_ingot/index.html b/static/browse/thermal_expansion/signalum_ingot/index.html similarity index 100% rename from prerender/browse/thermal_expansion/signalum_ingot/index.html rename to static/browse/thermal_expansion/signalum_ingot/index.html diff --git a/static/browse/thermal_expansion/signalum_nugget/icon.png b/static/browse/thermal_expansion/signalum_nugget/icon.png new file mode 100644 index 000000000..6ab866ce3 Binary files /dev/null and b/static/browse/thermal_expansion/signalum_nugget/icon.png differ diff --git a/prerender/browse/thermal_expansion/signalum_nugget/index.html b/static/browse/thermal_expansion/signalum_nugget/index.html similarity index 100% rename from prerender/browse/thermal_expansion/signalum_nugget/index.html rename to static/browse/thermal_expansion/signalum_nugget/index.html diff --git a/static/browse/thermal_expansion/signalum_security_lock/icon.png b/static/browse/thermal_expansion/signalum_security_lock/icon.png new file mode 100644 index 000000000..c70514e4a Binary files /dev/null and b/static/browse/thermal_expansion/signalum_security_lock/icon.png differ diff --git a/prerender/browse/thermal_expansion/signalum_security_lock/index.html b/static/browse/thermal_expansion/signalum_security_lock/index.html similarity index 100% rename from prerender/browse/thermal_expansion/signalum_security_lock/index.html rename to static/browse/thermal_expansion/signalum_security_lock/index.html diff --git a/static/browse/thermal_expansion/silver_block/icon.png b/static/browse/thermal_expansion/silver_block/icon.png new file mode 100644 index 000000000..e9cd1c89d Binary files /dev/null and b/static/browse/thermal_expansion/silver_block/icon.png differ diff --git a/prerender/browse/thermal_expansion/silver_block/index.html b/static/browse/thermal_expansion/silver_block/index.html similarity index 100% rename from prerender/browse/thermal_expansion/silver_block/index.html rename to static/browse/thermal_expansion/silver_block/index.html diff --git a/static/browse/thermal_expansion/silver_gear/icon.png b/static/browse/thermal_expansion/silver_gear/icon.png new file mode 100644 index 000000000..0c016a996 Binary files /dev/null and b/static/browse/thermal_expansion/silver_gear/icon.png differ diff --git a/prerender/browse/thermal_expansion/silver_gear/index.html b/static/browse/thermal_expansion/silver_gear/index.html similarity index 100% rename from prerender/browse/thermal_expansion/silver_gear/index.html rename to static/browse/thermal_expansion/silver_gear/index.html diff --git a/static/browse/thermal_expansion/silver_ingot/icon.png b/static/browse/thermal_expansion/silver_ingot/icon.png new file mode 100644 index 000000000..97fffb387 Binary files /dev/null and b/static/browse/thermal_expansion/silver_ingot/icon.png differ diff --git a/prerender/browse/thermal_expansion/silver_ingot/index.html b/static/browse/thermal_expansion/silver_ingot/index.html similarity index 100% rename from prerender/browse/thermal_expansion/silver_ingot/index.html rename to static/browse/thermal_expansion/silver_ingot/index.html diff --git a/static/browse/thermal_expansion/silver_nugget/icon.png b/static/browse/thermal_expansion/silver_nugget/icon.png new file mode 100644 index 000000000..be5c5c85d Binary files /dev/null and b/static/browse/thermal_expansion/silver_nugget/icon.png differ diff --git a/prerender/browse/thermal_expansion/silver_nugget/index.html b/static/browse/thermal_expansion/silver_nugget/index.html similarity index 100% rename from prerender/browse/thermal_expansion/silver_nugget/index.html rename to static/browse/thermal_expansion/silver_nugget/index.html diff --git a/static/browse/thermal_expansion/silver_ore/icon.png b/static/browse/thermal_expansion/silver_ore/icon.png new file mode 100644 index 000000000..d8f3c57ea Binary files /dev/null and b/static/browse/thermal_expansion/silver_ore/icon.png differ diff --git a/prerender/browse/thermal_expansion/silver_ore/index.html b/static/browse/thermal_expansion/silver_ore/index.html similarity index 100% rename from prerender/browse/thermal_expansion/silver_ore/index.html rename to static/browse/thermal_expansion/silver_ore/index.html diff --git a/static/browse/thermal_expansion/slag/icon.png b/static/browse/thermal_expansion/slag/icon.png new file mode 100644 index 000000000..c6f9e6b8d Binary files /dev/null and b/static/browse/thermal_expansion/slag/icon.png differ diff --git a/prerender/browse/thermal_expansion/slag/index.html b/static/browse/thermal_expansion/slag/index.html similarity index 100% rename from prerender/browse/thermal_expansion/slag/index.html rename to static/browse/thermal_expansion/slag/index.html diff --git a/static/browse/thermal_expansion/steam/icon.png b/static/browse/thermal_expansion/steam/icon.png new file mode 100644 index 000000000..156058c86 Binary files /dev/null and b/static/browse/thermal_expansion/steam/icon.png differ diff --git a/prerender/browse/thermal_expansion/steam/index.html b/static/browse/thermal_expansion/steam/index.html similarity index 100% rename from prerender/browse/thermal_expansion/steam/index.html rename to static/browse/thermal_expansion/steam/index.html diff --git a/static/browse/thermal_expansion/steam_dynamo/icon.png b/static/browse/thermal_expansion/steam_dynamo/icon.png new file mode 100644 index 000000000..25d3b6e3f Binary files /dev/null and b/static/browse/thermal_expansion/steam_dynamo/icon.png differ diff --git a/prerender/browse/thermal_expansion/steam_dynamo/index.html b/static/browse/thermal_expansion/steam_dynamo/index.html similarity index 100% rename from prerender/browse/thermal_expansion/steam_dynamo/index.html rename to static/browse/thermal_expansion/steam_dynamo/index.html diff --git a/static/browse/thermal_expansion/strongbox/icon.png b/static/browse/thermal_expansion/strongbox/icon.png new file mode 100644 index 000000000..974e782e7 Binary files /dev/null and b/static/browse/thermal_expansion/strongbox/icon.png differ diff --git a/prerender/browse/thermal_expansion/strongbox/index.html b/static/browse/thermal_expansion/strongbox/index.html similarity index 100% rename from prerender/browse/thermal_expansion/strongbox/index.html rename to static/browse/thermal_expansion/strongbox/index.html diff --git a/static/browse/thermal_expansion/sulfur/icon.png b/static/browse/thermal_expansion/sulfur/icon.png new file mode 100644 index 000000000..a8d0e77bc Binary files /dev/null and b/static/browse/thermal_expansion/sulfur/icon.png differ diff --git a/prerender/browse/thermal_expansion/sulfur/index.html b/static/browse/thermal_expansion/sulfur/index.html similarity index 100% rename from prerender/browse/thermal_expansion/sulfur/index.html rename to static/browse/thermal_expansion/sulfur/index.html diff --git a/static/browse/thermal_expansion/terrain_smasher/icon.png b/static/browse/thermal_expansion/terrain_smasher/icon.png new file mode 100644 index 000000000..9662ae838 Binary files /dev/null and b/static/browse/thermal_expansion/terrain_smasher/icon.png differ diff --git a/prerender/browse/thermal_expansion/terrain_smasher/index.html b/static/browse/thermal_expansion/terrain_smasher/index.html similarity index 100% rename from prerender/browse/thermal_expansion/terrain_smasher/index.html rename to static/browse/thermal_expansion/terrain_smasher/index.html diff --git a/static/browse/thermal_expansion/tesseract/icon.png b/static/browse/thermal_expansion/tesseract/icon.png new file mode 100644 index 000000000..12b874d43 Binary files /dev/null and b/static/browse/thermal_expansion/tesseract/icon.png differ diff --git a/prerender/browse/thermal_expansion/tesseract/index.html b/static/browse/thermal_expansion/tesseract/index.html similarity index 100% rename from prerender/browse/thermal_expansion/tesseract/index.html rename to static/browse/thermal_expansion/tesseract/index.html diff --git a/static/browse/thermal_expansion/tesseract_frame_empty/icon.png b/static/browse/thermal_expansion/tesseract_frame_empty/icon.png new file mode 100644 index 000000000..fc3312256 Binary files /dev/null and b/static/browse/thermal_expansion/tesseract_frame_empty/icon.png differ diff --git a/prerender/browse/thermal_expansion/tesseract_frame_empty/index.html b/static/browse/thermal_expansion/tesseract_frame_empty/index.html similarity index 100% rename from prerender/browse/thermal_expansion/tesseract_frame_empty/index.html rename to static/browse/thermal_expansion/tesseract_frame_empty/index.html diff --git a/static/browse/thermal_expansion/tesseract_frame_full/icon.png b/static/browse/thermal_expansion/tesseract_frame_full/icon.png new file mode 100644 index 000000000..12b874d43 Binary files /dev/null and b/static/browse/thermal_expansion/tesseract_frame_full/icon.png differ diff --git a/prerender/browse/thermal_expansion/tesseract_frame_full/index.html b/static/browse/thermal_expansion/tesseract_frame_full/index.html similarity index 100% rename from prerender/browse/thermal_expansion/tesseract_frame_full/index.html rename to static/browse/thermal_expansion/tesseract_frame_full/index.html diff --git a/static/browse/thermal_expansion/tin_block/icon.png b/static/browse/thermal_expansion/tin_block/icon.png new file mode 100644 index 000000000..bbcb61477 Binary files /dev/null and b/static/browse/thermal_expansion/tin_block/icon.png differ diff --git a/prerender/browse/thermal_expansion/tin_block/index.html b/static/browse/thermal_expansion/tin_block/index.html similarity index 100% rename from prerender/browse/thermal_expansion/tin_block/index.html rename to static/browse/thermal_expansion/tin_block/index.html diff --git a/static/browse/thermal_expansion/tin_gear/icon.png b/static/browse/thermal_expansion/tin_gear/icon.png new file mode 100644 index 000000000..33e591642 Binary files /dev/null and b/static/browse/thermal_expansion/tin_gear/icon.png differ diff --git a/prerender/browse/thermal_expansion/tin_gear/index.html b/static/browse/thermal_expansion/tin_gear/index.html similarity index 100% rename from prerender/browse/thermal_expansion/tin_gear/index.html rename to static/browse/thermal_expansion/tin_gear/index.html diff --git a/static/browse/thermal_expansion/tin_ingot/icon.png b/static/browse/thermal_expansion/tin_ingot/icon.png new file mode 100644 index 000000000..0efb394f1 Binary files /dev/null and b/static/browse/thermal_expansion/tin_ingot/icon.png differ diff --git a/prerender/browse/thermal_expansion/tin_ingot/index.html b/static/browse/thermal_expansion/tin_ingot/index.html similarity index 100% rename from prerender/browse/thermal_expansion/tin_ingot/index.html rename to static/browse/thermal_expansion/tin_ingot/index.html diff --git a/static/browse/thermal_expansion/tin_nugget/icon.png b/static/browse/thermal_expansion/tin_nugget/icon.png new file mode 100644 index 000000000..b9771b4de Binary files /dev/null and b/static/browse/thermal_expansion/tin_nugget/icon.png differ diff --git a/prerender/browse/thermal_expansion/tin_nugget/index.html b/static/browse/thermal_expansion/tin_nugget/index.html similarity index 100% rename from prerender/browse/thermal_expansion/tin_nugget/index.html rename to static/browse/thermal_expansion/tin_nugget/index.html diff --git a/static/browse/thermal_expansion/tin_ore/icon.png b/static/browse/thermal_expansion/tin_ore/icon.png new file mode 100644 index 000000000..a9ad238d7 Binary files /dev/null and b/static/browse/thermal_expansion/tin_ore/icon.png differ diff --git a/prerender/browse/thermal_expansion/tin_ore/index.html b/static/browse/thermal_expansion/tin_ore/index.html similarity index 100% rename from prerender/browse/thermal_expansion/tin_ore/index.html rename to static/browse/thermal_expansion/tin_ore/index.html diff --git a/static/browse/thermal_expansion/tinker_s_alloy_blend/icon.png b/static/browse/thermal_expansion/tinker_s_alloy_blend/icon.png new file mode 100644 index 000000000..ddb795973 Binary files /dev/null and b/static/browse/thermal_expansion/tinker_s_alloy_blend/icon.png differ diff --git a/prerender/browse/thermal_expansion/tinker_s_alloy_blend/index.html b/static/browse/thermal_expansion/tinker_s_alloy_blend/index.html similarity index 100% rename from prerender/browse/thermal_expansion/tinker_s_alloy_blend/index.html rename to static/browse/thermal_expansion/tinker_s_alloy_blend/index.html diff --git a/static/browse/thermal_expansion/tinker_s_alloy_block/icon.png b/static/browse/thermal_expansion/tinker_s_alloy_block/icon.png new file mode 100644 index 000000000..7b450ac10 Binary files /dev/null and b/static/browse/thermal_expansion/tinker_s_alloy_block/icon.png differ diff --git a/prerender/browse/thermal_expansion/tinker_s_alloy_block/index.html b/static/browse/thermal_expansion/tinker_s_alloy_block/index.html similarity index 100% rename from prerender/browse/thermal_expansion/tinker_s_alloy_block/index.html rename to static/browse/thermal_expansion/tinker_s_alloy_block/index.html diff --git a/static/browse/thermal_expansion/tinker_s_alloy_gear/icon.png b/static/browse/thermal_expansion/tinker_s_alloy_gear/icon.png new file mode 100644 index 000000000..15917cb25 Binary files /dev/null and b/static/browse/thermal_expansion/tinker_s_alloy_gear/icon.png differ diff --git a/prerender/browse/thermal_expansion/tinker_s_alloy_gear/index.html b/static/browse/thermal_expansion/tinker_s_alloy_gear/index.html similarity index 100% rename from prerender/browse/thermal_expansion/tinker_s_alloy_gear/index.html rename to static/browse/thermal_expansion/tinker_s_alloy_gear/index.html diff --git a/static/browse/thermal_expansion/tinker_s_alloy_ingot/icon.png b/static/browse/thermal_expansion/tinker_s_alloy_ingot/icon.png new file mode 100644 index 000000000..4a205e3bf Binary files /dev/null and b/static/browse/thermal_expansion/tinker_s_alloy_ingot/icon.png differ diff --git a/prerender/browse/thermal_expansion/tinker_s_alloy_ingot/index.html b/static/browse/thermal_expansion/tinker_s_alloy_ingot/index.html similarity index 100% rename from prerender/browse/thermal_expansion/tinker_s_alloy_ingot/index.html rename to static/browse/thermal_expansion/tinker_s_alloy_ingot/index.html diff --git a/static/browse/thermal_expansion/tinker_s_alloy_nugget/icon.png b/static/browse/thermal_expansion/tinker_s_alloy_nugget/icon.png new file mode 100644 index 000000000..cd463d9e7 Binary files /dev/null and b/static/browse/thermal_expansion/tinker_s_alloy_nugget/icon.png differ diff --git a/prerender/browse/thermal_expansion/tinker_s_alloy_nugget/index.html b/static/browse/thermal_expansion/tinker_s_alloy_nugget/index.html similarity index 100% rename from prerender/browse/thermal_expansion/tinker_s_alloy_nugget/index.html rename to static/browse/thermal_expansion/tinker_s_alloy_nugget/index.html diff --git a/static/browse/thermal_expansion/translocation_plate/icon.png b/static/browse/thermal_expansion/translocation_plate/icon.png new file mode 100644 index 000000000..c03db76a3 Binary files /dev/null and b/static/browse/thermal_expansion/translocation_plate/icon.png differ diff --git a/prerender/browse/thermal_expansion/translocation_plate/index.html b/static/browse/thermal_expansion/translocation_plate/index.html similarity index 100% rename from prerender/browse/thermal_expansion/translocation_plate/index.html rename to static/browse/thermal_expansion/translocation_plate/index.html diff --git a/static/browse/thermal_expansion/tuberous_flux_capacitor/icon.png b/static/browse/thermal_expansion/tuberous_flux_capacitor/icon.png new file mode 100644 index 000000000..9f9576f88 Binary files /dev/null and b/static/browse/thermal_expansion/tuberous_flux_capacitor/icon.png differ diff --git a/prerender/browse/thermal_expansion/tuberous_flux_capacitor/index.html b/static/browse/thermal_expansion/tuberous_flux_capacitor/index.html similarity index 100% rename from prerender/browse/thermal_expansion/tuberous_flux_capacitor/index.html rename to static/browse/thermal_expansion/tuberous_flux_capacitor/index.html diff --git a/static/browse/thermal_expansion/white_rockwool/icon.png b/static/browse/thermal_expansion/white_rockwool/icon.png new file mode 100644 index 000000000..86b9c82a8 Binary files /dev/null and b/static/browse/thermal_expansion/white_rockwool/icon.png differ diff --git a/prerender/browse/thermal_expansion/white_rockwool/index.html b/static/browse/thermal_expansion/white_rockwool/index.html similarity index 100% rename from prerender/browse/thermal_expansion/white_rockwool/index.html rename to static/browse/thermal_expansion/white_rockwool/index.html diff --git a/static/browse/thermal_expansion/yellow_rockwool/icon.png b/static/browse/thermal_expansion/yellow_rockwool/icon.png new file mode 100644 index 000000000..2521db392 Binary files /dev/null and b/static/browse/thermal_expansion/yellow_rockwool/icon.png differ diff --git a/prerender/browse/thermal_expansion/yellow_rockwool/index.html b/static/browse/thermal_expansion/yellow_rockwool/index.html similarity index 100% rename from prerender/browse/thermal_expansion/yellow_rockwool/index.html rename to static/browse/thermal_expansion/yellow_rockwool/index.html diff --git a/prerender/configure/index.html b/static/configure/index.html similarity index 100% rename from prerender/configure/index.html rename to static/configure/index.html diff --git a/prerender/craft/index.html b/static/craft/index.html similarity index 100% rename from prerender/craft/index.html rename to static/craft/index.html diff --git a/src/data/applied_energistics_2/mod.cg b/static/data/applied_energistics_2/mod.cg similarity index 100% rename from src/data/applied_energistics_2/mod.cg rename to static/data/applied_energistics_2/mod.cg diff --git a/src/data/applied_energistics_2/rv1-stable-1/mod-version.cg b/static/data/applied_energistics_2/rv1-stable-1/mod-version.cg similarity index 100% rename from src/data/applied_energistics_2/rv1-stable-1/mod-version.cg rename to static/data/applied_energistics_2/rv1-stable-1/mod-version.cg diff --git a/src/data/buildcraft/6.2.6/mod-version.cg b/static/data/buildcraft/6.2.6/mod-version.cg similarity index 100% rename from src/data/buildcraft/6.2.6/mod-version.cg rename to static/data/buildcraft/6.2.6/mod-version.cg diff --git a/src/data/buildcraft/mod.cg b/static/data/buildcraft/mod.cg similarity index 100% rename from src/data/buildcraft/mod.cg rename to static/data/buildcraft/mod.cg diff --git a/src/data/enderio/2.2.7.325/mod-version.cg b/static/data/enderio/2.2.7.325/mod-version.cg similarity index 100% rename from src/data/enderio/2.2.7.325/mod-version.cg rename to static/data/enderio/2.2.7.325/mod-version.cg diff --git a/src/data/enderio/mod.cg b/static/data/enderio/mod.cg similarity index 100% rename from src/data/enderio/mod.cg rename to static/data/enderio/mod.cg diff --git a/src/data/industrial_craft_2/classic-1.7.10-6/mod-version.cg b/static/data/industrial_craft_2/classic-1.7.10-6/mod-version.cg similarity index 100% rename from src/data/industrial_craft_2/classic-1.7.10-6/mod-version.cg rename to static/data/industrial_craft_2/classic-1.7.10-6/mod-version.cg diff --git a/src/data/industrial_craft_2/experimental-2.2.663/mod-version.cg b/static/data/industrial_craft_2/experimental-2.2.663/mod-version.cg similarity index 100% rename from src/data/industrial_craft_2/experimental-2.2.663/mod-version.cg rename to static/data/industrial_craft_2/experimental-2.2.663/mod-version.cg diff --git a/src/data/industrial_craft_2/mod.cg b/static/data/industrial_craft_2/mod.cg similarity index 100% rename from src/data/industrial_craft_2/mod.cg rename to static/data/industrial_craft_2/mod.cg diff --git a/src/data/minecraft/1.7.10/mod-version.cg b/static/data/minecraft/1.7.10/mod-version.cg similarity index 100% rename from src/data/minecraft/1.7.10/mod-version.cg rename to static/data/minecraft/1.7.10/mod-version.cg diff --git a/src/data/minecraft/mod.cg b/static/data/minecraft/mod.cg similarity index 100% rename from src/data/minecraft/mod.cg rename to static/data/minecraft/mod.cg diff --git a/src/data/railcraft/9.5.0/mod-version.cg b/static/data/railcraft/9.5.0/mod-version.cg similarity index 100% rename from src/data/railcraft/9.5.0/mod-version.cg rename to static/data/railcraft/9.5.0/mod-version.cg diff --git a/src/data/railcraft/mod.cg b/static/data/railcraft/mod.cg similarity index 100% rename from src/data/railcraft/mod.cg rename to static/data/railcraft/mod.cg diff --git a/src/data/thermal_expansion/4.0.0B8-23/mod-version.cg b/static/data/thermal_expansion/4.0.0B8-23/mod-version.cg similarity index 100% rename from src/data/thermal_expansion/4.0.0B8-23/mod-version.cg rename to static/data/thermal_expansion/4.0.0B8-23/mod-version.cg diff --git a/src/data/thermal_expansion/mod.cg b/static/data/thermal_expansion/mod.cg similarity index 100% rename from src/data/thermal_expansion/mod.cg rename to static/data/thermal_expansion/mod.cg diff --git a/src/fonts/press_start.ttf b/static/fonts/press_start.ttf similarity index 100% rename from src/fonts/press_start.ttf rename to static/fonts/press_start.ttf diff --git a/src/fonts/silkscreen.ttf b/static/fonts/silkscreen.ttf similarity index 100% rename from src/fonts/silkscreen.ttf rename to static/fonts/silkscreen.ttf diff --git a/src/pages/google5a5af661c2ad567d.html b/static/google5a5af661c2ad567d.html similarity index 100% rename from src/pages/google5a5af661c2ad567d.html rename to static/google5a5af661c2ad567d.html diff --git a/src/images/arrow-left-disabled.png b/static/images/arrow-left-disabled.png similarity index 100% rename from src/images/arrow-left-disabled.png rename to static/images/arrow-left-disabled.png diff --git a/src/images/arrow-left-hover.png b/static/images/arrow-left-hover.png similarity index 100% rename from src/images/arrow-left-hover.png rename to static/images/arrow-left-hover.png diff --git a/src/images/arrow-left.png b/static/images/arrow-left.png similarity index 100% rename from src/images/arrow-left.png rename to static/images/arrow-left.png diff --git a/src/images/arrow-right-disabled.png b/static/images/arrow-right-disabled.png similarity index 100% rename from src/images/arrow-right-disabled.png rename to static/images/arrow-right-disabled.png diff --git a/src/images/arrow-right-hover.png b/static/images/arrow-right-hover.png similarity index 100% rename from src/images/arrow-right-hover.png rename to static/images/arrow-right-hover.png diff --git a/src/images/arrow-right.png b/static/images/arrow-right.png similarity index 100% rename from src/images/arrow-right.png rename to static/images/arrow-right.png diff --git a/src/images/bedrock.png b/static/images/bedrock.png similarity index 100% rename from src/images/bedrock.png rename to static/images/bedrock.png diff --git a/src/images/bookshelf.png b/static/images/bookshelf.png similarity index 100% rename from src/images/bookshelf.png rename to static/images/bookshelf.png diff --git a/src/images/boots.png b/static/images/boots.png similarity index 100% rename from src/images/boots.png rename to static/images/boots.png diff --git a/src/images/chest_front.png b/static/images/chest_front.png similarity index 100% rename from src/images/chest_front.png rename to static/images/chest_front.png diff --git a/src/images/dirt.png b/static/images/dirt.png similarity index 100% rename from src/images/dirt.png rename to static/images/dirt.png diff --git a/src/images/empty.png b/static/images/empty.png similarity index 100% rename from src/images/empty.png rename to static/images/empty.png diff --git a/src/images/favicon.png b/static/images/favicon.png similarity index 100% rename from src/images/favicon.png rename to static/images/favicon.png diff --git a/src/images/fishing_rod.png b/static/images/fishing_rod.png similarity index 100% rename from src/images/fishing_rod.png rename to static/images/fishing_rod.png diff --git a/src/images/grass_side.png b/static/images/grass_side.png similarity index 100% rename from src/images/grass_side.png rename to static/images/grass_side.png diff --git a/src/images/ice.png b/static/images/ice.png similarity index 100% rename from src/images/ice.png rename to static/images/ice.png diff --git a/src/images/paper.png b/static/images/paper.png similarity index 100% rename from src/images/paper.png rename to static/images/paper.png diff --git a/src/images/remove-hover.png b/static/images/remove-hover.png similarity index 100% rename from src/images/remove-hover.png rename to static/images/remove-hover.png diff --git a/src/images/remove.png b/static/images/remove.png similarity index 100% rename from src/images/remove.png rename to static/images/remove.png diff --git a/src/images/stone_brick.png b/static/images/stone_brick.png similarity index 100% rename from src/images/stone_brick.png rename to static/images/stone_brick.png diff --git a/src/images/stone_brick_light.png b/static/images/stone_brick_light.png similarity index 100% rename from src/images/stone_brick_light.png rename to static/images/stone_brick_light.png diff --git a/src/images/unknown.png b/static/images/unknown.png similarity index 100% rename from src/images/unknown.png rename to static/images/unknown.png diff --git a/src/images/wordmark.png b/static/images/wordmark.png similarity index 100% rename from src/images/wordmark.png rename to static/images/wordmark.png diff --git a/src/images/workbench_front.png b/static/images/workbench_front.png similarity index 100% rename from src/images/workbench_front.png rename to static/images/workbench_front.png diff --git a/src/images/workbench_top.png b/static/images/workbench_top.png similarity index 100% rename from src/images/workbench_top.png rename to static/images/workbench_top.png diff --git a/prerender/index.html b/static/index.html similarity index 100% rename from prerender/index.html rename to static/index.html diff --git a/src/pages/robots.txt b/static/robots.txt similarity index 100% rename from src/pages/robots.txt rename to static/robots.txt diff --git a/src/pages/sitemap.txt b/static/sitemap.txt similarity index 100% rename from src/pages/sitemap.txt rename to static/sitemap.txt